/*.wrapper > div:nth-of-type(2n+1),
.wrapper > p:nth-of-type(2n){
background: orange;
}
或者*/
/*.wrapper > div:nth-child(2n+1),
.wrapper > p:nth-of-type(2n){
background: orange;
}
或者*/
.wrapper > div:not(:nth-child(even)),
.wrapper > p:nth-of-type(even){
background: orange;
}
.wrapper > p:nth-of-type(2n){
background: orange;
}
或者*/
/*.wrapper > div:nth-child(2n+1),
.wrapper > p:nth-of-type(2n){
background: orange;
}
或者*/
.wrapper > div:not(:nth-child(even)),
.wrapper > p:nth-of-type(even){
background: orange;
}
2016-03-30
a[class^=column]{display:inline-block; background:red;}
a[href$=doc]{display:inline-block; background:green;}
a[title*=box]{display:inline-block; background:blue;}
a[href$=doc]{display:inline-block; background:green;}
a[title*=box]{display:inline-block; background:blue;}
2016-03-30
overflow:ellipsis;
overflow:hidden;
white-space:nowrap;
overflow:hidden;
white-space:nowrap;
2016-03-29