css中的字体样式

font-family :字体类型 可以指定多种字体,从左到右的顺序排列,用英文逗号隔开

font-family: 字体1,字体2,...,字体N;

字体类型的取值可以是:汉字,英文,unicode编码

font-size:字体大小 两种取值:1关键字:  normal正常(默认值) lighter较细 bold较粗

                                              2像素值 px  

100px相当于(lighter)

400px相当于(normal)

700px相当于(bold)

font-style:字体风格 定义斜体效果

font-style:取值; normal: 正常 italic:倾斜的

特点:都是以font,由于这四个属性将来可能会经常一起出现,css中提供了一种简写。
font: font-style font-weight font-size font-family;

猜你喜欢

转载自blog.csdn.net/baidu_41836960/article/details/80399743