标签: css twitter-bootstrap
我想在twitter bootstrap中创建一个页脚,但由于某些原因,它不能完全延伸。
<div id="footer"> </div> #footer{ width: 100%; height: 200px; background-color: #b85e45; padding-top: 50px; margin-top: 50px; }
你可以看到它非常简单。
答案 0 :(得分:0)
将“body”上的边距设置为“0”:
body { margin:0px; }
here是一个有效的例子
答案 1 :(得分:0)
只需添加另一种风格
html, body { margin : 0; padding : 0; }
它会起作用。
更新了小提琴 - https://jsfiddle.net/xxn5xoqk/1/