具有多个类和一个ID的CSS选择器

时间:2017-06-16 00:47:48

标签: css css-selectors

我有这个结构

<body class="page-id-47745">
<head id="#masthead">

对于多个页面,我需要根据ID为这个特定页面选择#masthead:

.page-id-47745, .page-id-35419 #masthead {
    padding-bottom: 40px !important;
}

此代码不起作用,仅在写入1 Class:

.page-id-35419 #masthead {
    padding-bottom: 40px !important;
}

为什么我有这个问题?

1 个答案:

答案 0 :(得分:2)

您需要在两者中添加id。每个人都是不同的选择者:

.page-id-47745 #masthead,
.page-id-35419 #masthead {
  padding-bottom: 40px !important;
}