Apply css to all element except one who has specific parent

后端 未结 2 796
心在旅途
心在旅途 2021-01-23 20:40

I want to apply CSS to all pages except sidebars. Let me show you an example

.page #buddypress ul.group li
2条回答
  •  执笔经年
    2021-01-23 21:18

    Try this code

    div:not(.sidebar) ul.group li {
      border: 1px solid red;
    }
    // Here i have used div, but you can use whatever tag you have used for sidebar
    
    
      
      
      
    • 1
    • 2
    • 3

提交回复
热议问题