类型选择器 | Type selectors (Selectors)

  •   CSS 中文开发手册

    类型选择器 | Type selectors (Selectors) - CSS 中文开发手册

    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)

    ?

    ?

    ?

    ?

  •   CSS 中文开发手册
    转载请保留页面地址:https://www.breakyizhan.com/css/32163.html
    原文地址:https://www.cnblogs.com/breakyizhan/p/13222262.html