有条件的博主,
Conditional Blogger,
如何让这个 CSS 出现在每个博客标签中,但我不希望它出现在特定标签中
这段代码恰恰相反,它指定了哪个标签应该出现在 css 中,我想要一个可以在除某些标签
之外的任何地方显示 css 的代码
<b:if cond='data:blog.searchLabel in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>
使用逻辑运算符not
反转条件:
<b:if cond='data:blog.searchLabel not in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>
如何让这个 CSS 出现在每个博客标签中,但我不希望它出现在特定标签中
这段代码恰恰相反,它指定了哪个标签应该出现在 css 中,我想要一个可以在除某些标签
之外的任何地方显示 css 的代码 <b:if cond='data:blog.searchLabel in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>
使用逻辑运算符not
反转条件:
<b:if cond='data:blog.searchLabel not in ["car", "Identity", "Brand"]'>
<style>
body { background: #e2ad44 }
</style>
</b:if>