如何使此CSS出现在每个博客标签中,但我不希望它出现在特定的标签中
这段代码做了相反的事情,它指定了哪个标签应该出现在css中,我想要一个代码,可以在除了某些标签之外的任何地方显示css
<b:if cond='data:blog.searchLabel in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>发布于 2019-12-24 09:28:38
使用逻辑运算符not反转条件:
<b:if cond='data:blog.searchLabel not in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>https://stackoverflow.com/questions/59462030
复制相似问题