--- title: انتخابگر نوع slug: Web/CSS/انتخابگرـنوع translation_of: Web/CSS/Type_selectors ---
{{CSSRef}}

انتخابگر نوع با نوع عنصر انتخاب می‌کند. به عبارت دیگر این انتخابگر به وسیله نوع عنصر، تمام عنصرهای تطابق داده شده را انتخاب می‌کند.

/* را انتخاب می‌کند <a> همه عنصرهای */
a {
  color: red;
}

Syntax

element { style properties }

Example

CSS

span {
  background-color: skyblue;
}

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>

Result

{{EmbedLiveSample('Example', '100%', 150)}}

Specifications

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

Browser compatibility

{{Compat("css.selectors.type")}}