- .beauty {
- font-style: italic;
- font-weight: 700;
- font-size: 16px;
- font-family: 'Times New Roman', Times, serif;
-
- }
分别表示:
字的形式,一般有倾斜 italic 和不倾斜 none;
字的粗细,一般是400(不加粗) 700(加粗);
字的大小
字体,这里多个字体表示,如果当前电脑没有安装第一个字体,则显示第二个字体,以此类推。
也可以简写:(必须按照相同的顺序)
-
- .beauty {
-
- font: italic 700 16px 'Times New Roman', Times, serif;
-
- }
-
后面两个是必须的,前面两个是非必须的
- .beauty1{
- color: rgb(234, 75, 64);
- text-align: center;
- text-indent: 2em;
- text-decoration: underline;
- line-height: 25px;
- }
color:颜色,有三种表示方法,例如:pink ; rgb(100,0,0);#ffcc00;
text-align :对齐方式 ,有center left right;
text-indent:文本缩进,可以是缩进像素,例如5px,但是一般来说都是缩进两个字符:2em;
text-decoration:可以为文本添加下划线等;
line-height:行高,一般比文字本身大小要高