HTML.CSS样式01

1.设置下划线,删除线,顶划线的属性值

text-decoration

none;   无

underline;  下划线

line-through;  删除线

overline;   顶划线

示例:<div style="text-decoration: underline; ">

我是div

</div>

2.设置文本大小写

text-transform属性值(关键字)

lowercase;   全小写

capitalize;  单词首字母大写

uppercase;   全小写

示例:<div style="text-transform: uppercase;">Blue</div>

3.首行缩进

text-indent:

px; em; rem; 百分比

文字的默认字体大小  16px

1em  =  16px

4.文本水平对齐方式

text-indent:

left ;      左对齐

center      居中对齐

right        右对齐

猜你喜欢

转载自blog.csdn.net/h13803761292/article/details/81014138