我有一个看起来像这样的div
<div class="listItem jrFeatured">
我希望它保留
listItem
的所有CSS,但具有jrFeatured
的其他CSS但是我不希望所有
jrFeatured
与众不同,只有listItem
我是真的误会了这一点吗,还是有办法实现我想要的?
最佳答案
.listItem {
/* code for item(s) matching listItem class */
}
.jrFeatured {
/* code for item(s) matching jrFeatured class */
}
.listItem.jrFeatured {
/* code for item(s) matching BOTH listItem and jrFeatured classes */
/* based on your question, this sounds like what you're looking for */
}
关于html - 无法指出这个选择器,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8871742/