我有这样的代码(全部) http://jsfiddle.net/NSzdm/
但主要的麻烦是我尝试像往常一样在页面底部做,但我得到这样的东西:
简单的还有包装中心,但我也有页脚,必须在包装后...请看jsfiddle,所有代码都在那里......
footer css:
.footer {
margin: 50px 0 0 0;
background-color: #3a3a3a;
background-image: linear-gradient(bottom, #3b3b3b 0%, #424242 100%);
background-image: -o-linear-gradient(bottom, #3b3b3b 0%, #424242 100%);
background-image: -moz-linear-gradient(bottom, #3b3b3b 0%, #424242 100%);
background-image: -webkit-linear-gradient(bottom, #3b3b3b 0%, #424242 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3b3b3b', endColorstr='#ff424242',GradientType=0);
/* IE6-9 */
width: 100%;
height: 144px;
}
答案 0 :(得分:0)
我认为你只需要改变位置:绝对位置:相对于你的CSS .wrapper .center {position:relative}。
这似乎会让你的页脚向下移动,不确定它是否会影响页面的其他部分,很难说没有图像。