font标签及其属性
程序员文章站
2022-03-26 23:17:41
...
与font标签有关的css样式属性:
1、font-family 定义字体
font-family:"微软雅黑","arial";
2、font-size 字体大小
font-size:18px;
font-size:150%;
font-size:xx-small,x-small,small,medium,large,x-large,xx-large;
font-size:smaller,larger;
3、font-style 字体样式
font-style:normal,italic,oblique;
4、font-weight 字体粗细
font-weight:normal,bold,bolder,lighter,100-900;
5、font-variant 使输入不受大小写限制
font-variant: normal,small-caps;
最后,font属性的简写
font: bold italic 18px arial ;