为什么谷歌要使用字体标签?
因此,在向我兄弟演示 Chrome 的 DOM 浏览器时,我不禁注意到 Google 使用 标记。
我知道这是一个愚蠢的问题,但从编程的角度来看——为什么他们会在 Google 上使用已弃用的标签? 是因为它比使用
然后为其创建样式,还是直接
?
So, I couldn't help noticing while demonstrating Chrome's DOM browser thing to my brother, that Google uses a <font size=-2>
tag.
I know this is a stupid question, but from a programming point of view--why would they use a deprecated tag on Google? Is it because it's smaller than using <p class="whatever">
and then creating a style for it, or just going <p style="font-size: x-small">
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
2005 年 11 月,Google 软件工程师 Matt Cutts 说道:
资料来源:Google Blogscoped - Matt Cutts,Google 的小工具专家(采访)
In November 2005, Matt Cutts, a Google software engineer, said:
Source: Google Blogoscoped - Matt Cutts, Google’s Gadgets Guy (Interview)
在 Google 主页上节省几个字节可能会节省数 TB 的传输带宽。
Saving a few bytes on the Google homepage likely saves them terabytes of transfer bandwidth.
节省空间问题无疑是谷歌可能使用
font
和center
标签的原因之一。另一个原因可能是兼容性。让其主页在所有浏览器(包括 IE6 之前的浏览器和移动浏览器)上运行符合 Google 的最佳利益。由于
font
和center
标记非常古老,因此它们几乎得到普遍支持。Space saving issues is certainly one reason google might use the
font
andcenter
tags. Another reason could be for compatibility.It's in google's best interest to make their homepage to work in all browsers, including pre-IE6 and mobile browsers. Since the
font
andcenter
tag are so ancient, they're almost universally supported.