css中的文字屬性有:1、顏色屬性color;2、文字對齊屬性text-align;3、裝飾文字屬性text-decoration;4、文字縮排屬性text-indent;5、行間距屬性line-height。
css中的文字屬性有:
(學習影片分享:css影片教學)
1、文字顏色
color屬性用來定義文字的顏色
div { color:red; }
#開發中最常用的是十六進位
2、對齊文字
text-align屬性用於設定元素內文字內容的水平對齊方式
div { text-align:center; }
div { text-decoration:underline; }
div { text-indent:10px; }
p { text-indent:2em; }
p { line-height:26px; }
以上是css中的文字屬性有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!