从显示中排除任何元素

时间:2019-05-20 19:37:16

标签: css

我在网站中使用了相同的代码:

.title_hero {
  display: none;
}

对于某些类别为id-1和类别id-2的页面,我想排除此属性。该怎么做?

2 个答案:

答案 0 :(得分:2)

您可以这样做

.id-1 .title_hero, .id-2 .title_hero {
    display: block;
}

title_hero {
    display: none;
}

答案 1 :(得分:1)

这将选择所有不具有.title_heroid-1类的id-2

.title_hero:not(.id-1):not(.id-2) {
  display: none;
}