text-rendering
CSS property provides information to the rendering engine about what to optimize for when rendering text.
The browser makes trade-offs among speed, legibility, and geometric precision.
/* Keyword values */ text-rendering: auto; text-rendering: optimizeSpeed; text-rendering: optimizeLegibility; text-rendering: geometricPrecision; /* Global values */ text-rendering: inherit; text-rendering: initial; text-rendering: unset;
注意:
text-rendering
property is an SVG property that is not defined in any CSS standard. However, Gecko and WebKit browsers let you apply this property to HTML and XML content on Windows, macOS, and Linux.
One very visible effect is
optimizeLegibility
, which enables ligatures (ff, fi, fl, etc.) in text smaller than 20px for some fonts (for example, Microsoft's
Calibri
,
Candara
,
Constantia
,和
Corbel
,或
DejaVu
font family).
auto
The browser makes educated guesses about when to optimize for speed, legibility, and geometric precision while drawing text. For differences in how this value is interpreted by the browser, see the compatibility table.
optimizeSpeed
The browser emphasizes rendering speed over legibility and geometric precision when drawing text. It disables kerning and ligatures.
optimizeLegibility
The browser emphasizes legibility over rendering speed and geometric precision. This enables kerning and optional ligatures.
geometricPrecision
The browser emphasizes geometric precision over rendering speed and legibility. Certain aspects of fonts — such as kerning — don't scale linearly. So this value can make text using those fonts look good.
In SVG, when text is scaled up or down, browsers calculate the final size of the text (which is determined by the specified font size and the applied scale) and request a font of that computed size from the platform's font system. But if you request a font size of, say, 9 with a scale of 140%, the resulting font size of 12.6 doesn't explicitly exist in the font system, so the browser rounds the font size to 12 instead. This results in stair-step scaling of text.
But the
geometricPrecision
property — when fully supported by the rendering engine — lets you scale your text fluidly. For large scale factors, you might see less-than-beautiful text rendering, but the size is what you would expect—neither rounded up nor down to the nearest font size supported by Windows or Linux.
注意
: WebKit precisely applies the specified value, but Gecko treats the value the same as
optimizeLegibility
.
| 初始值 |
auto
|
|---|---|
| 适用于 | text elements |
| 继承 | yes |
| 计算值 | 如指定 |
| 动画类型 | discrete |
auto | optimizeSpeed | optimizeLegibility | geometricPrecision
This demonstrates how
optimizeLegibility
is used by browsers automatically when the
font-size
<
20px
.
<p class="small">LYoWAT - ff fi fl ffl</p> <p class="big">LYoWAT - ff fi fl ffl</p>
.small { font: 19.9px "Constantia", "Times New Roman", "Georgia", "Palatino", serif; }
.big { font: 20px "Constantia", "Times New Roman", "Georgia", "Palatino", serif; }
This example shows the difference between the appearance of
optimizeSpeed
and
optimizeLegibility
(in your browser; other browsers may vary).
<p class="speed">LYoWAT - ff fi fl ffl</p> <p class="legibility">LYoWAT - ff fi fl ffl</p>
p { font: 1.5em "Constantia", "Times New Roman", "Georgia", "Palatino", serif }
.speed { text-rendering: optimizeSpeed; }
.legibility { text-rendering: optimizeLegibility; }
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
text-rendering
非标
|
Chrome
完整支持
4
注意事项
|
Edge
完整支持
79
注意事项
|
Firefox
完整支持
1
注意事项
|
IE 不支持 No | Opera 完整支持 15 | Safari 完整支持 5 |
WebView Android
完整支持
3
注意事项
|
Chrome Android
完整支持
18
注意事项
|
Firefox Android 完整支持 46 | Opera Android 完整支持 14 | Safari iOS 完整支持 4.2 |
Samsung Internet Android
完整支持
1.0
注意事项
|
auto
非标
|
Chrome
完整支持
4
注意事项
|
Edge
完整支持
79
注意事项
|
Firefox
完整支持
1
注意事项
|
IE 不支持 No |
Opera
完整支持
15
注意事项
|
Safari
完整支持
5
注意事项
|
WebView Android
完整支持
≤37
注意事项
|
Chrome Android
完整支持
18
注意事项
|
Firefox Android
完整支持
46
注意事项
|
Opera Android
完整支持
14
注意事项
|
Safari iOS
完整支持
4.2
注意事项
|
Samsung Internet Android
完整支持
1.0
注意事项
|
geometricPrecision
非标
|
Chrome
完整支持
13
注意事项
|
Edge
完整支持
79
注意事项
|
Firefox
完整支持
1
注意事项
|
IE 不支持 No |
Opera
完整支持
15
注意事项
|
Safari 完整支持 6 |
WebView Android
完整支持
37
注意事项
|
Chrome Android
完整支持
18
注意事项
|
Firefox Android
完整支持
46
注意事项
|
Opera Android
完整支持
14
注意事项
|
Safari iOS 完整支持 6 |
Samsung Internet Android
完整支持
1.0
注意事项
|
完整支持
不支持
非标。预期跨浏览器支持较差。
见实现注意事项。
<canvas>
text-decoration
(and its longhand properties, such as
text-decoration-line
,
text-decoration-style
,和
text-decoration-thickness
)
text-emphasis
(and its longhand properties, including
text-emphasis-color
,
text-emphasis-position
,和
text-emphasis-style
)
text-shadow
text-transform
text-rendering
attribute
all
text-rendering