开发者

what does this font resize mean? [duplicate]

开发者 https://www.devze.com 2023-02-03 07:41 出处:网络
This question already has answers here: Closed 12 years ago. Poss开发者_Python百科ible Duplicate: What does this CSS do?
This question already has answers here: Closed 12 years ago.

Poss开发者_Python百科ible Duplicate:

What does this CSS do?

what does this font resize code in css mean exactly ??

font:12px/170% Verdana,sans-serif


font is a short hand for a lot of font related settings, see http://www.w3.org/TR/CSS2/fonts.html#propdef-font

In your Example: font:<font-size>/<line-height> <font-family>

So the font-size is 12px and the line height are 170% of that (20.4px).

0

精彩评论

暂无评论...
验证码 换一张
取 消