diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:40:17 -0500 |
commit | 33058f2b292b3a581333bdfb21b8f671898c5060 (patch) | |
tree | 51c3e392513ec574331b2d3f85c394445ea803c6 /files/zh-cn/web/css/font-smooth | |
parent | 8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff) | |
download | translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2 translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip |
initial commit
Diffstat (limited to 'files/zh-cn/web/css/font-smooth')
-rw-r--r-- | files/zh-cn/web/css/font-smooth/index.html | 134 |
1 files changed, 134 insertions, 0 deletions
diff --git a/files/zh-cn/web/css/font-smooth/index.html b/files/zh-cn/web/css/font-smooth/index.html new file mode 100644 index 0000000000..49c5319ac1 --- /dev/null +++ b/files/zh-cn/web/css/font-smooth/index.html @@ -0,0 +1,134 @@ +--- +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> + +<p>{{ CompatibilityTable() }}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>Firefox (Gecko)</th> + <th>Chrome</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Basic support</td> + <td>25.0<sup>[2]</sup></td> + <td>5.0<sup>[1]</sup></td> + <td>{{ CompatNo() }}</td> + <td>{{ CompatNo() }}</td> + <td>4.0<sup>[1]</sup></td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Feature</th> + <th>iOS Safari</th> + <th>Opera Mini</th> + <th>Opera Mobile</th> + <th>Android Browser</th> + </tr> + <tr> + <td>Basic support</td> + <td>?<sup>[1]</sup></td> + <td>{{ CompatNo() }}</td> + <td>{{ CompatNo() }}</td> + <td>{{ CompatNo() }}</td> + </tr> + </tbody> +</table> +</div> + +<p>[1] <strong>Webkit</strong> 实现了名为<code>-webkit-font-smoothing</code>的相似属性。这个属性仅在 Mac OS X/macOS 下生效。</p> + +<p>[2] <strong>Firefox</strong> 实现了名为 <code>-moz-osx-font-smoothing</code> 的相似属性。这个属性仅在 Mac OS X / macOS 下生效。</p> + +<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> |