blob: 72fcfb490ca3ddd5f7dfab784c65d60070b4f15c (
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
---
title: text-decoration-skip
slug: Web/CSS/text-decoration-skip
translation_of: Web/CSS/text-decoration-skip
---
<div>{{CSSRef}}</div>
<p><span class="seoSummary">CSS <strong><code>text-decoration-skip</code></strong> 属性定义了元素哪些部分的内容需要被文本修饰所跳过。它可以控制所有该元素或该元素的祖先所绘制的文本修饰线。</span></p>
<pre class="brush:css no-line-numbers">/* 关键字 */
text-decoration-skip: none;
text-decoration-skip: objects;
text-decoration-skip: spaces;
text-decoration-skip: edges;
text-decoration-skip: box-decoration;
/* 使用多个关键字 */
text-decoration-skip: objects spaces;
text-decoration-skip: leading-spaces trailing-spaces;
text-decoration-skip: objects edges box-decoration;
/* 全局值 */
text-decoration-skip: inherit;
text-decoration-skip: initial;
text-decoration-skip: unset;
</pre>
<div class="note">
<p><strong>注意:</strong> <code>ink</code> 值被移动至 {{cssxref("text-decoration-skip-ink")}} 属性。</p>
</div>
<p>{{cssinfo}}</p>
<h2 id="语法">语法</h2>
<h3 id="取值">取值</h3>
<dl>
<dt><code>none</code></dt>
<dd>没有任何内容被跳过。因此,文本修饰会为所有文本内容和行内元素进行绘制。</dd>
<dt><code>objects</code></dt>
<dd>拥有完整盒模型的原子行内元素会被跳过,例如图片和行内块元素。</dd>
<dt><code>spaces</code></dt>
<dd>所有的空格会被跳过,包括:所有的 <a href="https://www.unicode.org/reports/tr44/#White_Space">Unicode 空白字符</a> 和所有的分词符,以及任意相邻的 {{cssxref("letter-spacing")}} 或 {{cssxref("word-spacing")}}。</dd>
<dt><code>leading-spaces</code></dt>
<dd>除了只跳过开始的空格外,与 <code>spaces</code> 相同。</dd>
<dt><code>trailing-spaces</code></dt>
<dd>除了只跳过结尾的空格外,与 <code>spaces</code> 相同。</dd>
<dt><code>edges</code></dt>
<dd>文本修饰的开始与结束会比原有的装饰范围向内收缩(例如半个线宽)。这样,相邻的元素的下划线就可以分开。(这对于中文很重要,因为在中文中,下划线也是一种形式的标点符号。)</dd>
<dd><img alt='An example of "text-decoration-skip: edges;".' src="https://mdn.mozillademos.org/files/13466/decoration-skip-edges.png"></dd>
<dt><code>box-decoration</code></dt>
<dd>文本修饰会跳过盒模型的内边距、边框、外边距。这只会影响到祖先元素定义的修饰;修饰的盒不会渲染本身的盒修饰。</dd>
</dl>
<h3 id="语法格式">语法格式</h3>
<pre class="syntaxbox">{{csssyntax}}</pre>
<h2 id="示例">示例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><p><em>Hey,</em> <em>grab a cup of coffee!</em></p></pre>
<h3 id="CSS">CSS</h3>
<pre class="brush: css; highlight[4]">p {
margin: 0;
font-size: 3em;
text-decoration: underline;
text-decoration-skip: edges;
}</pre>
<h3 id="结果">结果</h3>
<p>{{EmbedLiveSample("Example", "100%", 60)}}</p>
<h2 id="Specifications">Specifications</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSS4 Text Decoration", "#text-decoration-skip-property", "text-decoration-skip")}}</td>
<td>{{Spec2("CSS4 Text Decoration")}}</td>
<td>首次定义</td>
</tr>
</tbody>
</table>
<h2 id="Browser_Compatibility">Browser Compatibility</h2>
<p>{{Compat("css.properties.text-decoration-skip")}}</p>
|