gpt4 book ai didi

html - 选择性样式 css3

转载 作者:太空宇宙 更新时间:2023-11-03 20:31:27 25 4
gpt4 key购买 nike

这是我的代码:

<table width="562" cellspacing="0" cellpadding="0" border="0" align="center" class="genericClass">
Some nested tags
</table>

我的风格是:

table.genericClass  a { ...  } 
table.genericClass p,li,div,td {}

但是所有的 divp 和所有列出的标签都得到了上面提到的样式,这不是预期的。我的语法有误吗?

最佳答案

现在您正在从 DOM 中选择所有 divlitd。如果您只想将样式添加到具有类 genericClass 的表中的元素,您的代码应该是:

table.genericClass a {
/**your properties and values here**/
}
table.genericClass p,
table.genericClass li,
table.genericClass div,
table.genericClass td {
/**your properties and values here**/
}

或者如果你想单独设置它们的样式:

table.genericClass p{
/**your properties and values here**/
}
table.genericClass li{
/**your properties and values here**/
}
table.genericClass div{
/**your properties and values here**/
}
table.genericClass td {
/**your properties and values here**/
}

关于html - 选择性样式 css3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41249059/

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