CSS 相当于
元素的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
谷歌浏览器说:
那应该是相应的CSS。无论如何,请确保不要使用像
big
这样的标签,因为它们违反了 HTML 应该用于描述内容而不是外观的规则。你可以选择类似的内容:
And use this in CSS:
这是正确的形式,而这
是不正确的。
Google Chrome says:
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:
And use this in CSS:
Which is the correct form, whereas
is incorrect.
这
直接相当于
This
is a direct equivalent of the
<big>
W3C 说:
所以设置更大的字体大小应该没问题。
The W3C says:
So setting a larger font-size should be fine.