标签: css css3 css-selectors
我想选择表头中设置了colspan属性的所有单元格。
colspan
当然,我可以这样做:
table thead th[colspan="1"], table thead th[colspan="2"], table thead th[colspan="3"] { }
但我正在寻找类似的东西:
table thead th[colspan*=""] { }
似乎不起作用。
问题: 如何选择表中设置了colspan的所有单元格?
谢谢!
答案 0 :(得分:9)
只需使用
table thead th[colspan]
根据CSS 2.1 spec,
<强> [att] 强> 当元素设置&#34; att&#34;时匹配属性,无论属性的值如何。
<强> [att] 强>
[att]
当元素设置&#34; att&#34;时匹配属性,无论属性的值如何。