CSS 文字樣式
阿新 • • 發佈:2019-01-31
(1) text-align 屬性 - 水平對齊方式
語法:
text-align:left 或 right 或 center 或 justify
注:
該屬性對塊集元素設定有效,對行內元素設定無效!
示例:
.textalign{width:50%;margin:0 auto;}
以上,設定文字的寬度,並居中顯示文字
(2)vertical-align 屬性 - 垂直對齊方式
該屬性用來設定元素內容的垂直方式
語法:
vertical-align:baseline 或 sub 或 super 或 top 或 text-top 或 middle 或 bottom 或 text-bottom 或 長度 或 百分比
注:
該屬性對塊集元素設定無效,對行內元素設定有效!對單元格元素有效!
以上,warp 對應的元素是 content 對應元素的父節點。
(3) line-height
設定行高
.em{line-height: 25px}
.em{line-height: 150%}
.em{line-height: 1em}
最好使用 em。
(4) 文字樣式屬性
word-spacing 屬性:設定元素內單詞之間間距
letter-spacing 屬性:設定元素內字母之間間距