我正在使用此代码段在我的所有网页上显示的标题上方获取一行。我用wordpress。
/* line at the top */
body, body.fixed_width {
border-top: 4px solid #000;
}
我想仅在一个页面的顶部显示此信息,或者仅在主页顶部显示。这可能吗?
答案 0 :(得分:3)
只需使用此
即可body.fixed_width {
border-top: 4px solid #000;
}
它只会在您在body标签中使用.fixed_width类的页面中显示
答案 1 :(得分:0)
大多数主题都将主页的正文放在名为home
的类中。
试试这个:
body.home, body.fixed_width.home {
border-top: 4px solid #000;
}