我正在开发响应式的 Bootstrap 主题。我通过在 functions.php 中添加代码来禁用子主题的响应能力。一切正常,没问题。
现在父容器现在已修复:HTML:
<div class="container">
CSS:
.container{width: 940px;}
但我希望页脚部分具有站点范围的背景颜色。我怎么能做到这一点?
我尝试设置不同的方法,例如 width:auto, width: 200% ,但它没有给我想要的结果。
假设这是页脚部分:
<footer>
My footer
</footer>
我在子主题上尝试的 CSS(不工作)
footer {
background: #CCCCCC;
width:100% !important;
position:absolute !important;
}
如果没有在 CSS 属性上设置太多 !important 也可以做到这一点吗?谢谢。