Blogger Information
Blog 94
fans 0
comment 0
visits 92518
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
【CSS】样式来源、优先级、选择器:[父子: >],[后代:.父级 . 子级]
可乐随笔
Original
481 people have browsed it

css样式

1. 样式来源

  1. 1. 用户自定义样式:使用元素style属性设置的样式
  2. 2. 用户代理样式:浏览器为该元素设置的默认样式
  3. 3. 继承样式:可以继承浏览器默认样式(HTMLBODY默认样式),并非所有属性都能被继承,只有字体、颜色才能继承,盒模型、边框、边距没有继承意义。

2. 优先级

  1. 自定义样式 > 继承样式 > 默认样式(用户代理样式)

3. 可以人工干预优先级

  1. 影响某个元素样式的因素:
  2. 1. 位置:后面定义的覆盖前面的
  3. 2. 权重:

4. 样式类别

  1. 1. 内联样式/行内样式:作用域 -> 仅限于当前HTML元素。
  2. 2. 文档样式/内部样式:作用域 -> 仅限于当前HTML文档。
  3. 3. 外部样式/公共样式:作用域 -> 凡是引用了该样式的文档。

5. 基本选择器

  1. 1. 标签选择器:如H1,H2,P等。
  2. 示例:<style>h1{color:red;}</style>
  3. 2. 属性选择器 title/id/class
  4. 示例:
  5. <h2 title="php.cn老师">hello php.cn</h2>
  6. <h2 id="active">hello php.cn</h2>
  7. <h2 class="hello">hello php.cn</h2>
  8. <style>
  9. h2[title='php.cn老师']{color:green;}
  10. h2#active{color:violet;}
  11. h2.hello{color:blue;}
  12. //id和class是高频属性,CSS为它设计了语法糖,简写#和.
  13. </style>
  14. 3. 群组选择器:多个选择器用“,”分开。
  15. 示例:<style>h1,h2#active,h2.hello{}</style>

6. 上下文选择器

  1. 1. 元素层级
  2. - 父子:ul , li
  3. - 后代:包括了父子,父子PLUS
  4. - 兄弟:同级
  5. - 所有:同级
  6. 2. 前提:必须要有一个查询起点(参考物)
  7. /* 父子: > */
  8. .list > .item {border:thin solid}
  9. /* 后代:空格 */
  10. .list .item3 {border:thin solid}
  11. 3. 链式语法:将查询起点调整到指定元素
  12. 语法:
  13. class="one two" => .one.two{}
  14. 新起点 "+ *" “~ *
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