Apply css to all element except one who has specific parent

后端 未结 2 798
心在旅途
心在旅途 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:11

    You can override all css for that element by using its ID (css id overrides css class). A possibility would be:

    #id{all:unset}
    

    However, this has limited browser support and your specified element should have an ID.
    See also: https://stackoverflow.com/a/36892781/9204431

提交回复
热议问题