HTML5 and CSS: 51-
51 - Override Class Declarations with Inline Styles
用 in-line style
<h1 style="color: green">
in-line 的優先度比 id 屬性高
52 - Override All Other Styles by using Important
你以為 inline 是覆蓋優先層級最高的嘛
錯了,還有 !important
color: red !important;
53 - Use Hex Code for Specific Colors
hexadecimal code, hex code, 十六進位制
6個hexadecimal digits 代表 color
54 - Use Hex Code to Mix Colors
FF8080,#80FF80,#8080FF 意外的好看
Color
Hex Code
Dodger Blue
#2998E4
Green
#00FF00
Orange
#FFA500
Red
#FF0000
White
#FFFFFF
Black
#000000
Gray
#808080
55 - Use Abbreviated Hex Code
可用簡碼,三碼
56 - Use RGB values to Color Elements
RGB value
57 - Use RGB to Mix Colors
Blue rgb(0, 0, 255)
Red rgb(255, 0, 0)
Orchid rgb(218, 112, 214)
Sienna rgb(160, 82, 45)
Last updated
Was this helpful?