zoukankan      html  css  js  c++  java
  • 类型选择器 | 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
  • 相关阅读:
    八月二十九学习报告
    文本操作
    EL表达式
    注解开发
    逆向
    内置对象和方法
    每日日报2020.11.10 1905
    每日日报2020.11.12 1905
    每日日报2020.11.17 1905
    每日日报2020.11.20 1905
  • 原文地址:https://www.cnblogs.com/breakyizhan/p/13222262.html
Copyright © 2011-2022 走看看