小编典典

CSS nth-match不起作用

css

nth-match应该按照以下方式在jsfiddle中工作

:nth-match(even of p,h3) {text-decoration: underline;}

这应该强调每一秒p和每个h3要素。但是,它不起作用-既不在FF中也不在Chrome中:

哪里出问题了?


阅读 707

收藏
2020-05-16

共1个答案

小编典典

CSS4选择器目前没有太多的浏览器支持,您可以使用nth-of-type具有更多浏览器支持的CSS3选择器

p:nth-of-type(even) {text-decoration: underline;}
2020-05-16