[CSS]色彩與文字
大綱
- 顏色
- color
- 背景顏色
- background-color
- 顏色的設定種類
-
直接指定顏色名稱
ex: color:red; -
rgb值(紅, 綠, 藍)
ex:rgb(255, 255, 255) -
hex碼:以16進位表示紅, 綠, 藍
ex:#ffffff - 背景進階設定
- 背景顏色
- 背景圖片
- 背景重複
- background-repeat: repeat|repeat-x|repeat-y|no-repeat
- 重複方式
- 橫向重複:repeat-x
- 直向重複:repeat-y
- 無限重複:repeat
- 不重複:no-repeat
- 背景大小
- 背景位置
- 透明度
- 文字相關的設定
- font-family: 字型一、字型二、字型三
- px
- em:相對於16px的大小
- 文字:lighter, normal, bold
- 數字:100 ~ 900 (400 = normal, 700 = bold)
- 正常的字型:normal
- 斜體的字型:italic
- 靠左:left
- 靠右:right
- 置中:center
- 無裝飾:none
- 文字下方的線:underline
- 文字上方的線:overline
- 刪除線:line-through
- 清單
- none: 無清單符號
- disc: 小圓點
- circle: 小圓圈
- square: 小方塊
- decimal: 數字
- upper-roman: 大寫羅馬符號
- lower-roman: 小寫羅馬符號
<style> body{ background-color: pink; } </style>
background-image:url("圖片位置")
background-size: 寬度 高度
background-position: 水平(left|center|right) 垂直位置(top|center|bottom)
對於顏色或背景色設定透明度 | 對於整個標籤設定透明度 |
rgba(紅, 綠, 藍, 透明度) 紅, 綠, 藍設定值0~255 透明度0~1 (數字越小越透明) |
opacity:0.5 |
樣式 | 名稱 | 說明 | 寫法 |
---|---|---|---|
字型 | font-family |
|
body {
font-family: Georgia, 'Times New Roman', Times, serif; } |
字體大小 | font-size |
|
font-size: 20px; |
粗細 | font-weight |
|
font-weight: lighter; |
風格 | font-style |
|
font-style: italic; |
間距 | letter-spacing | 設定值 (單位px) | letter-spacing: 50px; |
字距 | word-spacing | 設定值 (單位px) | word-spacing: 50px; |
行高 | line-height | 設定值 (倍數,無單位) | line-height:50; |
文字對齊 | text-align |
|
text-align:center; |
裝飾線 | text-decoration |
|
text-decoration:none; |
- list-style-type: 設定值
留言
張貼留言