这里字体大小-2是什么意思?
我从网站的源代码中看到这一点:
<font size="-2">@2009 </font>
当大小为负数时意味着什么?
I see this from source code of a web site:
<font size="-2">@2009 </font>
What does it mean when size is negative?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是一种已弃用的标记样式。 没有人应该再使用它。
回到过去,在 CSS 出现之前,您可以使用
标签来控制页面上文本的相对大小。 “-2”仅表示比基本字体大小小两倍的大小。
如果我没记错的话,第一代浏览器中的字体大小范围为 1 到 7。
That is a deprecated style of markup. Nobody should be using it anymore.
Back in the old days, before CSS, you could use the
<font>
tag to control the relative size of text on the page. A "-2" simply meant two sizes smaller than your base font size.Font sizes ranged from 1 to 7 in first generation browsers, if I recall correctly.
这意味着@2009的字体大小相对于其周围的内容应该是-2个单位(即小2个单位)。
It means the font size of @2009 should be -2 units (i.e. 2 units smaller) relative to the content around it.
这意味着比浏览器中的默认文本大小小两个刻度。
It means two notches smaller than the default text size in the browser.