css选择器笔记

p.important {color:red;}  选择器现在会匹配 class 属性包含 important 的所有 p 元素

我们假设 class 为 important 的所有元素都是粗体,而 class 为 warning 的所有元素为斜体,class 中同时包含 important 和 warning 的所有元素还有一个银色的背景 。就可以写作:

.important {font-weight:bold;}
.warning {font-style:italic;}
.important.warning {background:silver;}

后代选择器:也叫包含选择器
h1 em {color:red;} h1下面的em
.mytop .topinner{height:681px; width:997px;margin:0 auto;} mytop下面的 topinner 最终topinner被选择
 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。