这个尺寸在 css {font: 14px/24px Arial, Helvetica, sans-serif} 中意味着什么?

发布于 2024-10-18 15:24:02 字数 36 浏览 6 评论 0原文

这里的 14px/24px 是什么?哪个是真正的字体大小?

What is 14px/24px here? Which is the real font size?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

眼趣 2024-10-25 15:24:02

它是不同字体相关属性的简写。这意味着:

font-size: 14px;
line-height: 24px;

font-family: Arial, Helvetica, sans-serif

请参阅:http://www.impressivewebs.com/css -font-shorthand-property-cheat-sheet/

在此处输入图像描述

It's the shorthand for the different font related properties. It means:

font-size: 14px;
line-height: 24px;

font-family: Arial, Helvetica, sans-serif

See: http://www.impressivewebs.com/css-font-shorthand-property-cheat-sheet/

enter image description here

幽蝶幻影 2024-10-25 15:24:02

第一个是 font-size 第二个是 line-height

引用自 字体简写规范

'字体'
值:[ [ <'字体样式'> || <'字体变体'> || <'字体粗细'> ]?
<'字体大小'> [ / <'行高'> ]?
<'字体系列'> ] |标题|图标|
菜单|消息框 |小标题 |
状态栏 |继承

First is font-size the second is line-height

Quote from the specification for font shorthand

'font'
Value: [ [ <'font-style'> || <'font-variant'> || <'font-weight'> ]?
<'font-size'> [ / <'line-height'> ]?
<'font-family'> ] | caption | icon |
menu | message-box | small-caption |
status-bar | inherit

GRAY°灰色天空 2024-10-25 15:24:02

这相当于

#html{
    font-size:14px;
    line-height:24px;
    font-family: Arial, Helvetica, sans-serif;
}

This is equivalent to

#html{
    font-size:14px;
    line-height:24px;
    font-family: Arial, Helvetica, sans-serif;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文