blob: 959bd15c4cbee9a30dedffaf59e9a0a7609313f3 (
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
---
title: '::placeholder'
slug: 'Web/CSS/::placeholder'
translation_of: 'Web/CSS/::placeholder'
---
<div>{{CSSRef}}{{SeeCompatTable}}</div>
<p><a href="/en-US/docs/Web/CSS/Pseudo-elements">伪元素</a><strong><code>::placeholder</code></strong>可以选择一个表单元素的<a href="/en-US/docs/Web/HTML/Forms_in_HTML#The_placeholder_attribute">占位文本</a>,它允许开发者和设计师自定义<a href="/en-US/docs/Web/HTML/Forms_in_HTML#The_placeholder_attribute">占位文本</a>的样式。</p>
<pre class="brush: css no-line-numbers">::placeholder {
color: red;
font-size: 1.5em;
}</pre>
<p>在使用了<code>::placeholder</code>伪元素的选择器中,仅有小一部分CSS属性可以使用,这个集合可以参考{{cssxref("::first-line")}}伪元素。</p>
<h2 id="语法">语法</h2>
<pre class="brush: css">{{csssyntax}}
</pre>
<h2 id="示例">示例</h2>
<h3 id="红色文本">红色文本</h3>
<h4 id="HTML">HTML</h4>
<pre class="brush: html"><input placeholder="我是红色的!"></pre>
<h4 id="CSS">CSS</h4>
<pre class="brush: css">input::placeholder {
color: red;
font-size: 1.2em;
font-style: italic;
}</pre>
<h4 id="结果">结果</h4>
<p>{{ EmbedLiveSample('红色文本') }}</p>
<h3 id="绿色文本">绿色文本</h3>
<p> </p>
<h4 id="HTML_2">HTML</h4>
<pre class="brush: html"><input placeholder="而我是绿色的!"></pre>
<h4 id="CSS_2">CSS</h4>
<pre class="brush: css">input::placeholder {
color: green;
}</pre>
<h4 id="结果_2">结果</h4>
<p>{{EmbedLiveSample('绿色文本')}}</p>
<p> </p>
<h2 id="标准">标准</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">规范</th>
<th scope="col">状态</th>
<th scope="col">说明</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('CSS4 Pseudo-Elements', '#placeholder-pseudo', '::placeholder')}}</td>
<td>{{Spec2('CSS4 Pseudo-Elements')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>功能</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Edge</th>
<th>Internet Explorer</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatChrome(57)}}</td>
<td>{{CompatGeckoDesktop("51.0")}}<sup>[1]</sup></td>
<td>{{CompatNo}}</td>
<td>{{CompatNo}}</td>
<td>44</td>
<td>10.1</td>
</tr>
<tr>
<td>前缀支持</td>
<td>Supported</td>
<td>Supported</td>
<td>Supported</td>
<td>10 -ms-</td>
<td>Supported</td>
<td>5 -webkit-</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>功能</th>
<th>Android</th>
<th>Chrome for Android</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
</tr>
<tr>
<td>基本支持</td>
<td>{{CompatChrome(57)}}</td>
<td>{{CompatChrome(57)}}</td>
<td>{{CompatGeckoMobile("52.0")}}</td>
<td>{{CompatNo}}</td>
<td> </td>
<td>10.3</td>
</tr>
<tr>
<td>前缀支持</td>
<td>Supported</td>
<td>Supported</td>
<td>Supported</td>
<td>10 -ms-</td>
<td>Supported</td>
<td>5 -webkit-</td>
</tr>
</tbody>
</table>
</div>
<p>[1] 在Gecko 51.0 {{geckoRelease("51.0")}} 以及更低的版本中,请使用 {{cssxref("::-moz-placeholder")}} 。</p>
<h2 id="相似阅读">相似阅读</h2>
<ul>
<li>{{cssxref(":placeholder-shown")}}</li>
<li>与此伪元素选择器功能相同的几个浏览器私有选择器:
<ul>
<li>{{cssxref("::-webkit-input-placeholder")}}</li>
<li>{{cssxref("::-moz-placeholder")}}</li>
<li>{{cssxref(":-ms-input-placeholder")}}</li>
</ul>
</li>
<li><a href="/en-US/docs/Web/HTML/Forms_in_HTML">Forms in HTML</a></li>
<li>{{HTMLElement("input")}}</li>
<li>{{HTMLElement("textarea")}}</li>
</ul>
|