我试图有两个stacked
带页脚的元素
.background
.container-fluid
.footer
请看我的小提琴:
http://jsfiddle.net/z9Unk/309/
我希望绿色显示在背景中,底部有页脚。
但它显示黑色(身体的背景颜色)。这是为什么?
如果我从中删除背景颜色body
,则它显示绿色背景。
如何在不background-color
从身体上移除的情况下显示绿色背景?
我试图有两个stacked
带页脚的元素
.background
.container-fluid
.footer
请看我的小提琴:
http://jsfiddle.net/z9Unk/309/
我希望绿色显示在背景中,底部有页脚。
但它显示黑色(身体的背景颜色)。这是为什么?
如果我从中删除背景颜色body
,则它显示绿色背景。
如何在不background-color
从身体上移除的情况下显示绿色背景?
你已经z-index:-1;
上了.my-world-background
。body
默认情况下有z-index:0;
,所以它呈现在前面。
使用背景颜色而不是颜色
.footer-content {
text-align:center;
font-size:22px;
background-color: green;
}
.my-world-background
div 位于 body div 后面,因此背景颜色优先body
。background-color
这就是为什么当您从正文中移除该属性时您会看到绿色。同时页脚没有background-color
设置属性,只有一个颜色属性,它指的是文本的颜色。也许这就是你想要的: