blob: 893fe26862b86129736cd666b2c79543b83ac4b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
---
title: 字体平滑
slug: Web/CSS/font-smooth
tags:
- CSS
- CSS Reference
- Non-standard
- Reference
translation_of: Web/CSS/font-smooth
---
<div>{{ CSSRef }} {{ Non-standard_header }}</div>
<p><strong><code>font-smooth</code></strong> <a href="/zh-CN/CSS" title="CSS">CSS</a> 属性用来控制字体渲染时的平滑效果。</p>
<table class="properties">
<tbody>
<tr>
<td><strong>{{ Xref_cssinitial() }}</strong></td>
<td><code>auto</code></td>
</tr>
<tr>
<td><strong>适用元素</strong></td>
<td>所有元素与生成的内容</td>
</tr>
<tr>
<td><strong>{{ Xref_cssinherited() }}</strong></td>
<td>是</td>
</tr>
<tr>
<td><strong>Percentages</strong></td>
<td>relative to parent element's font size</td>
</tr>
<tr>
<td><strong>Media</strong></td>
<td>{{ Xref_cssvisual() }}</td>
</tr>
<tr>
<td><strong>{{ Xref_csscomputed() }}</strong></td>
<td>as specified</td>
</tr>
</tbody>
</table>
<h2 id="语法">语法</h2>
<pre class="brush:css">/* Keyword values */
font-smooth: auto;
font-smooth: never;
font-smooth: always;
/* <length> value */
font-smooth: 2em;
</pre>
<div class="note"><strong>Webkit</strong> 实现了名为<code>-webkit-font-smoothing</code>的相似属性。这个属性仅在 Mac OS X/macOS 下生效。
<ul>
<li><code>none</code> - 关闭字体平滑;展示有锯齿边缘的文字。</li>
<li><code>antialiased</code> - 平滑像素级别的字体,而不是子像素。从亚像素渲染切换到黑暗背景上的浅色文本的抗锯齿使其看起来更轻。</li>
<li><code>subpixel-antialiased</code> - 在大多数非视网膜显示器上,这将会提供最清晰的文字。</li>
</ul>
</div>
<div class="note"><strong>Firefox</strong> 实现了名为 -moz-osx-font-smoothing 的相似属性。这个属性仅在 Mac OS X / macOS 下生效。
<ul>
<li><code>auto</code> - 允许浏览器选择字体平滑的优化方式,通常为<code>grayscale</code>。</li>
<li><code>grayscale</code> - 用灰度抗锯齿渲染文本,而不是子像素。从亚像素渲染切换到黑暗背景上的浅色文本的抗锯齿使其看起来更轻。</li>
<li>{{cssxref("inherit")}}</li>
<li>{{cssxref("unset")}}</li>
</ul>
</div>
<h2 id="规范">规范</h2>
<p>尽管在早期(2002)的 <a href="http://www.w3.org/TR/WD-font/#font-smooth">CSS3 Fonts</a> 草稿中就出现了 <code>font-smooth</code> ,但是这个属性已经在规范中被移除,而且已经不在标准跟踪之中。</p>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("css.properties.font-smooth")}}
<h2 id="参见">参见</h2>
<ul>
<li><a href="http://usabilitypost.com/2012/11/05/stop-fixing-font-smoothing/">Please Stop "Fixing" Font Smoothing – UsabilityPost</a></li>
</ul>
|