Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要选择它们的 colspan 高于 X 的 TD。
<td colspan="8">..</td>
需要类似的东西td[colspan>=6]
td[colspan>=6]
不幸的是,没有这样的选择器。
您最好为具有colspan属性的元素定义 CSS:
colspan
td[colspan] {...}
然后将它们取消为有限集:
td[colspan='1'], td[colspan='2'], td[colspan='3'], td[colspan='4'], td[colspan='5']
如果您确定从 8 中选择,您可以这样使用
td[colspan="8"] ~ td {