HTML网页制作:[18]CSS段落属性

2024-10-26 18:21:22

1、word-spacing控制单词间隔请注意,只是单词间隔<style>.alsp{ word-spacing:50px;}</style>

HTML网页制作:[18]CSS段落属性

3、letter-spacing字符间隔,用于控制字符与字符之间的间距<style>.alsp{ letter-spacing:50px;}</style>

HTML网页制作:[18]CSS段落属性

5、text-decoration文字修饰。none:默认值underline:添加下划线overline:添加上划线line-through:添加删除线blink:添加闪烁效果看代码:<style>.alsp{ text-decoration:underline;}</style>

HTML网页制作:[18]CSS段落属性

7、text-align设置文本的水平对齐方式left:左对齐right:右对齐center:居中对齐justify:两端对齐铛刷故揭举例:<style>.alsp{ text-align:center;}</style>

HTML网页制作:[18]CSS段落属性

9、text-indent文本缩进。控制整体向右缩进例:<style>.alsp{ text-indent:30px;}</style>

HTML网页制作:[18]CSS段落属性

11、line-height文本行高,行高可以设置为长度、倍数、百分比例:<style>.alsp{ line-height:50px;}</style>

HTML网页制作:[18]CSS段落属性
猜你喜欢