这个CSS代码意味着什么(字体大小划分)?

Sal*_*leh 33 css

对不起大家,我真的找不到更好的问题标题了.

我遇到过这段代码

font: 9pt/18px Tahoma;
Run Code Online (Sandbox Code Playgroud)

你知道这意味着什么吗?

Spu*_*ley 42

是.这是写的速记方式font-sizeline-height在一起.


小智 13

/* The shorthand */
font: 9pt/18px Tahoma;

/* The expanded version of the above style */
font-size:9pt;
line-height:18px;
font-family:Tahoma;
Run Code Online (Sandbox Code Playgroud)