我有这个结构
<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;
}
为什么我有这个问题?
答案 0 :(得分:2)
您需要在两者中添加id
。每个人都是不同的选择者:
.page-id-47745 #masthead,
.page-id-35419 #masthead {
padding-bottom: 40px !important;
}