gpt4 book ai didi

html - 定位多个元素,每个元素都拥有相同的类

转载 作者:太空宇宙 更新时间:2023-11-04 09:07:40 25 4
gpt4 key购买 nike

所以我基本上想做

table.mobile, td.mobile, tr.mobile {
some css
}

有没有办法做到这一点而不必指定每个元素的类?

类似的东西

(table, td, tr).mobile {
some css
}

最佳答案

还没有。 CSS 选择器级别 4 指定 :matches()但是浏览器还不支持它。

Firefox 和 Chrome 目前支持实验性前缀伪类 :-moz-any 和 :-webkit-any 因此对于这些浏览器,您可以编写

:-moz-any(table, tr, td).mobile { 
display:inline-block;
border-width: 1px;
border-style:solid;
padding:3px
}
:-webkit-any(table, tr, td).mobile {
display:inline-block;
border-width: 1px;
border-style:solid;
padding:3px
}
table { border-color:blue; }
tr { border-color:green; }
td { border-color:red; }
p { border-color:black; }
<table class="mobile">
<tr class="mobile">
<td class="mobile">borders</td>
</tr>
</table>
<p class="mobile">
no border
</p>

关于html - 定位多个元素,每个元素都拥有相同的类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42360311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com