css选择器

1、奇/偶选择

.row:nth-child(even){
       background:#color;
}
 .row:nth-child(odd){
       background:#color;
}
 

2、通过属性选择

input[type="text"]{
          background:#color  
}        

3、反选

:not(.box){
    color:#color;
}        
:not(span){
    display:block;
}

4、其他

h2:first-child{...}

div.text>div{...}

h2+header{...}

 

posted @ 2014-01-01 14:50  狰狞蛋子  阅读(119)  评论(0编辑  收藏  举报