CSS 相当于

发布于 2024-11-19 09:04:27 字数 148 浏览 2 评论 0原文

元素的 CSS 等效项是什么?如果我没记错的话,那么将文本包装在 元素中与设置较大的 font-size 不同。

What is the CSS equivalent of the <big> element? If I'm not mistaken then wrapping your text in the <big> element is not the same as setting a larger font-size.

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

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

发布评论

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

评论(4

樱花落人离去 2024-11-26 09:04:27

谷歌浏览器说:

big {
     font-size: larger;
}

那应该是相应的CSS。无论如何,请确保不要使用像 big 这样的标签,因为它们违反了 HTML 应该用于描述内容而不是外观的规则。
你可以选择类似的内容:

<span class="important-text">My important text</span>

And use this in CSS:

span.important-text {
     font-size: larger;
}

这是正确的形式,而这

<big>My important text</big>

是不正确的。

Google Chrome says:

big {
     font-size: larger;
}

That should be the corresponding CSS. Anyway, make sure not to use tags like big since they go against the rule which states HTML should be used to describe the content, not the appearance.
You could go for something like:

<span class="important-text">My important text</span>

And use this in CSS:

span.important-text {
     font-size: larger;
}

Which is the correct form, whereas

<big>My important text</big>

is incorrect.

波浪屿的海角声 2024-11-26 09:04:27

<span style="font-size:larger">...</span>

直接相当于

This

<span style="font-size:larger">...</span>

is a direct equivalent of the <big>

猫卆 2024-11-26 09:04:27

W3C

BIG:以“大”字体呈现文本。

所以设置更大的字体大小应该没问题。

The W3C says:

BIG: Renders text in a "large" font.

So setting a larger font-size should be fine.

眼泪都笑了 2024-11-26 09:04:27
font-size:200% = font-size:2.0em = <big><big><big>
font-size:200% = font-size:2.0em = <big><big><big>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文