CSS字体样式属性和文本样式属性

1.font-size

字体大小设置
font-size: 16px;

2.font-family

字体样式设置
font-family: "微软雅黑";

3.font-weight

字体加粗
font-weight: bold;
bold相当于700加粗
normal相当于400不加粗,可以让粗体不加粗
建议用数字,数字解析快

4.font-style

font-style: normal;
normal:正常显示字体,可以让斜体变得不倾斜
italic:倾斜显示字体

5.字体连写

字体连写是有顺序的
font: font-style font-weight font-size/line-height font-family;
其中font-size和font-family不能省略,其他的可以省略自动取默认值

6.color

颜色属性
color: #2fceff;

1.预定义颜色,如red,green,blue等。
2.十六进制,如#FF0000,#FF6600,#29D794等。
3.RGB代码,如红色可表示为rgb(255,0,0)或rgb(100%,0%,0%)。

7.line-height

刚间距,行高,行与行之间的距离
line-height: 24px;
正常情况下比字号大个7,8像素就行了

8.text-align

text-align: center;
设置文本内容的水平对齐方式,有 left,center,right,默认是left。

9.text-indent

text-indent: 2em;
首行缩进,单位em,1em就是一个字的距离

10.text-decoration

text-decoration: overline;
给文本加线
underline 下划线
overline 上划线
line-through 删除线
none 取消线

你可能感兴趣的:(CSS字体样式属性和文本样式属性)