--- title: انتخابگر نوع slug: Web/CSS/انتخابگرـنوع translation_of: Web/CSS/Type_selectors ---
انتخابگر نوع با نوع عنصر انتخاب میکند. به عبارت دیگر این انتخابگر به وسیله نوع عنصر، تمام عنصرهای تطابق داده شده را انتخاب میکند.
/* را انتخاب میکند <a> همه عنصرهای */ a { color: red; }
element { style properties }
span { background-color: skyblue; }
<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>
{{EmbedLiveSample('Example', '100%', 150)}}
Specification | Status | Comment |
---|---|---|
{{SpecName('CSS4 Selectors', '#type-selectors', 'Type (tag name) selector')}} | {{Spec2('CSS4 Selectors')}} | No changes |
{{SpecName('CSS3 Selectors', '#type-selectors', 'type selectors')}} | {{Spec2('CSS3 Selectors')}} | No changes |
{{SpecName('CSS2.1', 'selector.html#type-selectors', 'type selectors')}} | {{Spec2('CSS2.1')}} | |
{{SpecName('CSS1', '#basic-concepts', 'type selectors')}} | {{Spec2('CSS1')}} | Initial definition |
{{Compat("css.selectors.type")}}