:nth-match(even of p,h3) {text-decoration: underline;}
这应该强调每第二个p和h3元素.但是,它不起作用 – 在FF和Chrome中都不行:
http://jsfiddle.net/VUKQS/
问题在哪里?
您可以使用第n种类型,CSS3选择器具有更大的浏览器支持(see here):
p:nth-of-type(even) {text-decoration: underline;}
DEMO