css:为文本添加样式
- 字体样式
font-family //字体
font-size //字体大小
font-style //字体样式,可以创建斜体
font-weight //=bold,可以创建粗体样式,取消粗体:font-weight:normal
简写法:font:
- 设置行高 line-height
- 设置颜色 color
- 设置背景
- 背景图片 background-image:url()
- background-repeat
- background-position:水平方向 垂直方向
- background-attachment //控制背景图片是否随窗口的滚动而滚动,fixed scroll
- 控制间距
letter-spacing:字符间距 word-spacing:单词间距
设置为normal或0,恢复到默认
- 设置缩进
text-indent // 属性是继承的,忽略继承值,设置为0
- 设置对齐方式
text-align //justify 两端对齐 center left right
- 修改文本的大小写
text-transform //uppercase lowercase capitalize 取消设置为normal
- 文本装饰
text-decoration //underline overline line-through 取消设置为normal
- 设置空白属性
white-space // pre nowrap(不换行,一行显示) normal