使用 Empty Class 建立 Selector Scope

栏目: CSS · 发布时间: 5年前

内容简介:實務上會遇到有些 CSS Class,並沒有設定任何 Property,目的在於建立出 Scope,方便 Selector 選擇到我們要的 Element。CSS 3

實務上會遇到有些 CSS Class,並沒有設定任何 Property,目的在於建立出 Scope,方便 Selector 選擇到我們要的 Element。

Version

CSS 3

Class Selector

<!DOCTYPE html>
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    .box {
      color: #f00;
    }
  </style>
</head>
<body>
  <div class="box">box 1</div>
  <div class="box">box 2</div>
</body>
</html>

box 1box 2 都使用 .box ,若我們想讓 box 2紅色 ,直接使用 class selector 選取 .box ,則 box 1box 2 都會被選到,這顯然不是我們要的。

使用 Empty Class 建立 Selector Scope

Empty Class

<!DOCTYPE html>
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    .post .box {
      color: #f00;
    }
  </style>
</head>
<body>
  <div class="box">box 1</div>
  <div class="post">
    <div class="box">box 2</div>
  </div>
</body>
</html>

13 行

<div class="post">
  <div class="box">box 2</div>
</div>

實務上會在要選擇的 <div> 外面再加上一層 <div> ,並加上一個新的 class。

第 6 行

.post .box {
  color: #f00;
}

如此就可使用 descendant selector 同時選取 .post.box 兩個 class,這樣只會選到 box 2 ,類似替 CSS selector 創建了 scope。

使用 Empty Class 建立 Selector Scope

Conclusion

  • CSS 的 class 並不止用在設定 property,也可以使用 empty class 建立出 scope,方便 CSS selector 選擇到我們要的 element

以上所述就是小编给大家介绍的《使用 Empty Class 建立 Selector Scope》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Ext JS源码分析与开发实例宝典

Ext JS源码分析与开发实例宝典

彭仁夔 / 电子工业出版社 / 2010-1 / 78.00元

《Ext JS源码分析与开发实例宝典》从Ext JS实现的基本功能开始讲解,从两个方面对Ext JS进行整体上的概述,让读者从宏观上去把握ExtJS框架。接下来讲解Ext JS核心基础知识,包括事件机制、模板模型、数据模型以及对类、函数、字符串、日期、数组及定时任务这6个类进行扩展。然后讲解Ext JS基于元素的开发,包括动画特效和拖曳实现等。最后深入讲解组件的开发,对布局、模型及4大组件一一进行......一起来看看 《Ext JS源码分析与开发实例宝典》 这本书的介绍吧!

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换