font简写方式

Posted tallish

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了font简写方式相关的知识,希望对你有一定的参考价值。

字体的简写

font常用的属性

font-style:
/*normal默认		italic斜体字		oblique倾斜字体		inherit继承父标签字体样式*/
font-variant:
/*normal默认		small-caps小型大写字母	inherit继承父标签字体样式*/
font-weigth:
/*normal默认		bold粗体		bolder更粗		lighter更细		100至900由粗到细400 等同于 normal,而 700 等同于 bold。*/
font-family:
/*设置字体样式*/
line-heigth:
/*normal默认		设置纯数字的间距 	%基于当前字体尺寸的百分比行间距	em设置间距*/
font-size:
/*xx-small
x-small
small
medium
large
x-large
xx-large	把字体的尺寸设置为不同的尺寸,从 xx-small 到 xx-large。	默认值:medium	像素px*/

字体在css里面简写

font简写必须遵守一个规定font-style font-variant font-weight再加上后面font-size/line-height再加上font-family

可以不设置其中的某个值,但是这后面值必须要有 font-size/line-height再加上一个font-family。

未设置的属性会使用其默认值

{
    font:font-style	font-variant font-weight font-size/line-height font-family;
    /*font-style	font-variant	font-weight是可选的,后面想让font:有效果就一定要加上如下面*/    
}
{
  font: 50px/1.6em "微软雅黑";
}

以上是关于font简写方式的主要内容,如果未能解决你的问题,请参考以下文章

css常用的简写技巧_css background简写css border 简写css font属性简写等

css 简写技巧

css样式表中的 font:messagebox 一句是啥意思啊?

javascript代码简写的几种常用方式汇总

CSS 我使用的@ Font-Face片段

css中background简写属性