blob: 5a4b5e4c895167d28ab8a7a46715eea101bd31fa (
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
|
---
title: انتخابگر نوع
slug: Web/CSS/انتخابگرـنوع
translation_of: Web/CSS/Type_selectors
---
<div>{{CSSRef}}</div>
<p dir="rtl"><strong>انتخابگر نوع</strong> با نوع عنصر انتخاب میکند. به عبارت دیگر این انتخابگر به وسیله نوع عنصر، تمام عنصرهای تطابق داده شده را انتخاب میکند.</p>
<pre class="brush: css no-line-numbers">/* را انتخاب میکند <a> همه عنصرهای */
a {
color: red;
}</pre>
<h2 id="Syntax">Syntax</h2>
<pre class="syntaxbox">element { <em>style properties</em> }
</pre>
<h2 id="Example">Example</h2>
<h3 id="CSS">CSS</h3>
<pre class="brush: css">span {
background-color: skyblue;
}
</pre>
<h3 id="HTML">HTML</h3>
<pre class="brush: html"><span>Here's a span with some text.</span>
<p>Here's a p with some text.</p>
<span>Here's a span with more text.</span>
</pre>
<h3 id="Result">Result</h3>
<p>{{EmbedLiveSample('Example', '100%', 150)}}</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 Selectors', '#type-selectors', 'Type (tag name) selector')}}</td>
<td>{{Spec2('CSS4 Selectors')}}</td>
<td>No changes</td>
</tr>
<tr>
<td>{{SpecName('CSS3 Selectors', '#type-selectors', 'type selectors')}}</td>
<td>{{Spec2('CSS3 Selectors')}}</td>
<td>No changes</td>
</tr>
<tr>
<td>{{SpecName('CSS2.1', 'selector.html#type-selectors', 'type selectors')}}</td>
<td>{{Spec2('CSS2.1')}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName('CSS1', '#basic-concepts', 'type selectors')}}</td>
<td>{{Spec2('CSS1')}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility">Browser compatibility</h2>
<p>{{Compat("css.selectors.type")}}</p>
|