CSS樣式中的後代選擇器和子代選擇器
屬性的繼承性:例如屬性color具有繼承性
當樣式中的上一次有color屬性時,次樣式內包裹的樣式都具有color的屬性值
後代選擇器用空格隔開;
子代選擇器用">"箭頭隔開
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> /*後代選擇器(空格):container下的所有的div都是紅色*/ #container div{ color: red; } /*子代選擇器(箭頭):*/ #container > div{ color: red; } #container > .china{ color: red; } .china1{ color: green; } </style> <title>後代選擇器</title> </head> <body> <div id="container"> <div>div1</div> <div class="china">div2</div> <div>div3</div> <div>div4</div> <div class="china">div5 <div class="china1">孫子元素div6</div> </div> </div> </body> </html>
相關文章
- CSS樣式中的通用選擇器和偽類選擇器CSS
- 基本CSS選擇器,複合選擇器,後代選擇器CSS
- CSS-選擇器4-後代選擇器CSS
- CSS樣式選擇器CSS
- css樣式常用的樣式以及選擇器CSS
- jQuery 後代選擇器jQuery
- jQuery子選擇器和後代選擇器區別簡單介紹jQuery
- 關於css選擇器和樣式表的應用CSS
- CSS選擇器(5)——屬性選擇器CSS
- CSS ID選擇器與CLASS選擇器CSS
- css樣式選擇器學習筆記CSS筆記
- css中:not()選擇器和jQuery中.not()方法CSSjQuery
- CSS 選擇器CSS
- CSS選擇器CSS
- CSS的選擇器CSS
- CSS-選擇器6-兄弟選擇器CSS
- CSS3新增選擇器(屬性選擇器、結構偽類選擇器、偽元素選擇器)CSSS3
- css3 選擇器:屬性選擇器(五)CSSS3
- 【CSS】【3】CSS選擇器CSS
- CSS系列:CSS選擇器CSS
- CSS :required 選擇器CSSUI
- CSS :optional 選擇器CSS
- css選擇器概述CSS
- CSS選擇器(一)CSS
- CSS 元素選擇器CSS
- CSS常用選擇器CSS
- CSS id選擇器CSS
- CSS_選擇器CSS
- CSS--選擇器CSS
- css的基本選擇器CSS
- JQuery選擇器——可見性篩選選擇器和屬性篩選選擇器jQuery
- jQuery基礎樣式——選擇器jQuery
- 002---選擇器(標籤選擇器、類選擇器、id選擇器、偽類選擇器、萬用字元選擇器)字元
- css當中:before和:after選擇器CSS
- CSS5-選擇器5-子元素選擇器CSS
- jQuery選擇器介紹:基本選擇器、層次選擇器、過濾選擇器、表單選擇器jQuery
- HTML中CSS引用:選擇器的使用HTMLCSS
- CSS中的五大選擇器CSS