是否有任何标准包含网络安全字体列表

发布于 2024-09-25 20:26:33 字数 82 浏览 1 评论 0原文

是否有任何标准包含网络安全字体列表?

我本来以为 W3C 会有一个,但我没找到。我发现它更多地只是一个术语而不是任何标准。我说得对吗?

Is there any standard that has a list of web-safe fonts?

I expected W3C to have one, but I couldn't find. I found it more to be just a terminology instead of any standard. Am I right?

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

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

发布评论

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

评论(5

攒一口袋星星 2024-10-02 20:26:33

W3C 没有标准列表,因为他们无法决定在哪些计算机上安装哪些字体。

如今大多数计算机上安装的一些最常见的字体包括 Arial、Verdana、Georgia 和 Times New Roman。这里没有标准,只是碰巧这些字体包含在大多数操作系统安装中。

W3C doesn't have a standard list simply because they aren't the ones who determine what fonts are installed on what computers.

Some of the most common fonts installed on most computers today include Arial, Verdana, Georgia and Times New Roman. There's no standard here, it just so happens that these fonts are included in most OS installations.

为你鎻心 2024-10-02 20:26:33

字体堆栈是一种方法,另一种方法是仅使用 Windows/Macinitosh/Linux 中常见的字体堆栈 - http://www.apaddedcell.com/web-fonts/

Font stacks are one way, the other way is to just use the ones that are common across Windows/Macinitosh/Linux - http://www.apaddedcell.com/web-fonts/.

不甘平庸 2024-10-02 20:26:33

确实没有任何“网络安全”字体。

标准不要求浏览器始终支持特定字体。这一切都取决于特定操作系统中安装的内容。如果浏览器找到指定的字体,就会采用它。如果没有,它就会寻找替代品。

最明智的选择是指定一个字体列表,如下所示:

font-family: Arial, Helvetica, Sans-Serif;

如果可以,请检查页面在不同操作系统中的所有字体的外观。这是你能给出的最好的表现。否则,开发您的页面以应对某些字体大小变化,这始终是最好的选择。

There aren't really any "web-safe" fonts.

Standards do not require of browsers to always support specific fonts. It all comes down to what is installed in a specific OS. If a browser finds the specified font, it takes it. If not, it looks for a substitute.

The smartest option is to specify a list of fonts like this:

font-family: Arial, Helvetica, Sans-Serif;

If you are able to, check how your page looks with all of those in different OSes. That's the best performance you could give. Otherwise, develop your pages to be robust to some font size variations, that's always the best bet.

夜清冷一曲。 2024-10-02 20:26:33

您无法保证所有计算机都具有您指定的确切字体,因此请放松并放手。 W3C 规范定义了通用字体系列:衬线字体、无衬线字体、等宽字体、草书字体和幻想字体。使用这些并让客户端的浏览器做出最合适的选择。

You can't guarantee all computers will have the exact font you specify, so relax and let it go. The W3C spec defined generic font-familes: serif, sans-serif, monospace, cursive and fantasy. Use these and let the client's browser make the most appropriate choice.

栀梦 2024-10-02 20:26:33

http://www.ampsoft 上有一个非常好的常见 Mac 和 PC 字体列表。 net/webdesign-l/WindowsMacFonts.html,这在设置字体时很有帮助,例如:

font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;

Lucida Sans Unicode 是 PC 字体,Lucida Grande 是 Mac 等效字体,sans-serif 是字体系列。

There is a really good list of common Mac and PC fonts at http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html, which is helpful when setting fonts, for example:

font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;

With Lucida Sans Unicode being the PC font, Lucida Grande the Mac equivalent and sans-serif the font family.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文