您的位置:首页 > Web前端 > CSS

css之css设置

2015-06-04 21:56 766 查看

文本设置

<!--字母大小写转换-->
<!--capitalize使首字母大写,uppercase所有字母大写,lowercase所有字母小写,none正常显示-->
text-transform: capitalize | uppercase | lowercase | none
<!--文本修饰-->
<!--underline下划线,overline上划线,line-through删除线,blink文字闪烁,none正常显示-->
text-decoration: underline | overline | line-through | blink | none
<!--空格处理-->
<!--none正常,pre样式为预处理,nowrap强制一行显示-->
white-space : none | underline | nowrap
<!--垂直对其-->
<!--baseline和上级元素基线对齐,sub以下标显示,super以上标显示,top元素和行中最高元素向上对齐,text-top和上级元素的字体向上对齐-->
vertical-align: baseline | sub | super | top | text-top | middle | bottom | text-bottom
<!--水平对齐-->
<!--justify左右对齐-->
text-align: left | right | center | justify
<!--文本缩进-->
text-indent: 20px | 20%


字体设置

<!--14像素黑体斜体粗体-->
font: italic small-caps 600 14px 黑体
<!--字体大小-->
font-size: xx-small/x-small/small/large/x-large/xx-large/x-large/xx-large
<!--字体重量-->
font-weight: bold/bolder/lighter/100/200/....
<!--行距-->
line-height: 30px
<!--单词间距,对汉语无效-->
word-spacing: normal/5px/10px/...
<!--字母间距-->
letter-spacing: normal/5px/10px/...
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: