Blogger Information
Blog 19
fans 0
comment 0
visits 10714
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS选择器种类
无名小辈
Original
570 people have browsed it

选择器种类

1 标签 选择器
2 属性 选择器
3 群组 选择器
4 通配 选择器

上下文 选择器种类

  1. /* 1 子元素 : > */
  2. ul > li{
  3. }
  4. /* 2 后代元素 : 空格 */
  5. ul li{
  6. }
  7. /* 3 相令兄弟 : + */
  8. ul li+*{
  9. /* 这里的“*”表示通配符 */
  10. }
  11. /* 4 所有兄弟 : ~ */
  12. ul li~*{
  13. /* 这里的“*”表示通配符 */
  14. }

选择器提高权限

临时提高 h2 权限,使用!important

  1. h2{
  2. background-color: gray !important;
  3. /* !important 临时提权到最高权重 */
  4. }
  5. h2 span{
  6. background-color: gray !important;
  7. /* !important 临时提权到最高权重 */
  8. }
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