CSS 文字格式介紹

大雄45發表於2020-01-14
導讀 CSS 文字屬性可定義文字的外觀。
透過文字屬性,您可以改變文字的顏色、字元間距,對齊文字,裝飾文字,對文字進行縮排,等等。

CSS 文字格式介紹CSS 文字格式介紹

文字格式

This text is styled with some of the text formatting properties. The heading uses the text-align, text-transform, and color properties.
The paragraph is indented, aligned, and the space between characters is specified. The underline is removed from the
 link.

文字顏色

顏色屬性被用來設定文字的顏色。

顏色是透過CSS最經常的指定:

十六進位制值 - 如: #FF0000
一個RGB值 - 如: RGB(255,0,0)
顏色的名稱 - 如: red

一個網頁的背景顏色是指在主體內的選擇:
例項

body {color:red;}
h1 {color:#00ff00;}
h2 {color:rgb(255,0,0);}


對於W3C標準的CSS:如果你定義了顏色屬性,你還必須定義背景色屬性。

文字的對齊方式

文字排列屬性是用來設定文字的水平對齊方式。

文字可居中或對齊到左或右,兩端對齊.

當text-align設定為"justify",每一行被展開為寬度相等,左,右外邊距是對齊(如雜誌和報紙)。

例項

h1 {text-align:center;}
p.date {text-align:right;}
p.main {text-align:justify;}

文字修飾

text-decoration 屬性用來設定或刪除文字的裝飾。

從設計的角度看 text-decoration屬性主要是用來刪除連結的下劃線:

例項

a {text-decoration:none;}


也可以這樣裝飾文字:

例項

h1 {text-decoration:overline;}
h2 {text-decoration:line-through;}
h3 {text-decoration:underline;}


我們不建議強調指出不是連結的文字,因為這常常混淆使用者。

文字轉換

文字轉換屬性是用來指定在一個文字中的大寫和小寫字母。

可用於所有字句變成大寫或小寫字母,或每個單詞的首字母大寫。

例項

p.uppercase {text-transform:uppercase;}
p.lowercase {text-transform:lowercase;}
p.capitalize {text-transform:capitalize;}

文字縮排

文字縮排屬性是用來指定文字的第一行的縮排。

例項

p {text-indent:50px;}

原文來自: 


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69955379/viewspace-2673217/,如需轉載,請註明出處,否則將追究法律責任。

相關文章