在http://adasportsandrackets.com/wordpress上,我试图添加CSS在h4标题“畅销书”下添加边框。如我在删除缓存后在主要浏览器中尝试过的那样,它不起作用,也不是缓存问题。
这是HTML:
<div class="wpb_text_column wpb_content_element best-sellers">
<div class="wpb_wrapper">
<h4>Best Sellers</h4>
这是我的CSS:
.best-sellers h4 {
border-bottom: 1px solid #eee;
padding: 7px 0px;
}
我也尝试过:
.best-sellers {
border-bottom: 1px solid #eee;
padding: 7px 0px;
}
最佳答案
这为我工作:
.page-template-template-home-default-php .wpb_wrapper h4 {
border-bottom: 5px solid #999;
}
或尝试:
.best-sellers h4 {border-bottom: 5px solid #999;}
关于html - CSS选择器将边框应用于h4,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/30645590/