css font属性的书写和取值顺序是什么?
更新:HHH   时间:2023-1-7


css font属性的书写和取值顺序是什么?相信很多新手对 font属性的了解处于一知半解状态,小编给大家总结了以下内容。如下资料是关于font属性的内容。

font属性的综合写法,书写顺序分别是:font-style font-variant font-weight font-size font-family。

实例:

.ziti {font:italic normal bold 18px arial;}

如果哪项属性是默认值,可以把他省略不写,系统会自动解析其为默认值。

font的取值有点复杂,取值主要分为两部分,现在举几个[ [ <font-style> || <font-variant> || <font-weight> ]? <font-size> [ / <line-height> ]? <font-family> ]取值的例子,如下:

p
{
    font:italic small-caps bold 12px/1.2em Arial;
}

以上就是font属性的详细内容,代码示例简单明了,如果在日常工作遇到此问题。通过这篇文章,希望你能有所收获,更多详情敬请关注天达云行业资讯频道!

返回web开发教程...