Blogger Information
Blog 12
fans 0
comment 0
visits 17655
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
元素样式的来源和优先级(css常用选择器及权重分析方法)
php001
Original
460 people have browsed it

样式的来源

  • 1、用户代理样式;2、用户自定义样式。
    样式来源
    • 行内样式
      1. <h2 style="color:aqua ;">行内样式</h2>
    • 文档样式
      1. <style>h2 {background-color: blue;}</style>
    • 外部样式
      1. <link rel="stylesheet" href="style.css">
      - 元素样式优先级:1.行内样式>2.文档样式>3.默认样式

      常用选择器

      1、标签选择器:p {}
      2、属性选择器:p[title="title"] {}
      3、群组选择器:p[title="title"],.one {}
      4、通配选择器:.b:nth-of-type(3) + * {}

      权重的分析方法:

    • id等于百位,class等于十位,标签等于个位
    • 022表示:0个id,2个class,2个标签
Correcting teacher:PHPzPHPz

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post