body{.......}
a{......}
input{......}
刚写完,并测试了
/<link[^>]+>|<(script|style)[^>]+>.*?<\/(script|style)>/gi使用的时候,使用
var arr = str.match(regexp)for(var i=0, len=att.lengthi<leni++) {
//自己处理吧
}
first-childfirst-child表示选择列表中的第一个标签。代码如下:
li:first-child{background:#090}
上面的意思是,li 列表中的 第一个li模块的背景颜色。
2
last-child
last-child表示选择列表中的最后一个标签,代码如下:
li:last-child{background:#090}