元素選擇器

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.

**CSS 元素選擇器 (也稱 型態選擇器)**依照 Node 節點名稱選取匹配的 Element 元素。換句話說,此選擇器選取在 Document 文件內所有指定該型態的元素。

css
/* 全部的 <a> 元素。*/
a {
  color: red;
}

語法

element { style properties }

範例

CSS

css
span {
  background-color: skyblue;
}

HTML

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

規範

Specification
Selectors Level 4
# type-selectors

Browser compatibility

Report problems with this compatibility data on GitHub
desktopmobile
Chrome
Edge
Firefox
Opera
Safari
Chrome Android
Firefox for Android
Opera Android
Safari on iOS
Samsung Internet
WebView Android
WebView on iOS
Type selector (elementName)
Namespaces (ns|elementName)

Legend

Tip: you can click/tap on a cell for more information.

Full support
Full support