CSS参考手册
选择 | Selectors
类型选择器 | Type selectors
CSS 类型选择器按节点名称匹配元素。换句话说,它选择文档中给定类型的所有元素。
/* All <a> elements. */
a {
color: purple;
}
语法
element { style properties }
实例
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>
结果
规范
Specification |
Status |
Comment |
---|---|---|
Selectors Level 4The definition of 'Type (tag name) selector' in that specification. |
Working Draft |
No changes |
Selectors Level 3The definition of 'type selectors' in that specification. |
Recommendation |
No changes |
CSS Level 2 (Revision 1)The definition of 'type selectors' in that specification. |
Recommendation |
|
CSS Level 1The definition of 'type selectors' in that specification. |
Recommendation |
Initial definition |
浏览器兼容性
Feature |
Chrome |
Edge |
Firefox (Gecko) |
Internet Explorer |
Opera |
Safari |
---|---|---|---|---|---|---|
Basic support |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
(Yes) |
Feature |
Android |
Chrome for Android |
Edge |
Firefox Mobile (Gecko) |
IE Mobile |
Opera Mobile |
Safari Mobile |
---|---|---|---|---|---|---|---|
Basic support |
? |
? |
(Yes) |
? |
? |
? |
? |
选择 | Selectors相关

层叠样式表( Cascading Style Sheets )是一种用来表现 HTML 或 XML 等文件样式的计算机语言。CSS 不仅可以静态地修饰网页,还可以配合各种脚本语言动态地对网页各元素进行格式化。