1

如何让这个 CSS 出现在每个博客标签中,但我不希望它出现在特定标签中

这段代码正好相反,它指定哪个标签应该出现在css中,我想要一个可以在除某些标签之外的任何地方显示css的代码

  <b:if cond='data:blog.searchLabel in [&quot;car&quot;, &quot;Identity&quot;, &quot;Brand&quot;]'>

<style>
    body { background: #e2ad44 }
  </style> 

</b:if>
4

1 回答 1

0

使用逻辑运算符not反转条件:

<b:if cond='data:blog.searchLabel not in ["car", "Identity", "Brand"]'>
  <style>
    body { background: #e2ad44 }
  </style> 
</b:if>
于 2019-12-24T01:28:38.150 回答