我正在阅读 Bootsrap3 文档。我发现这段页脚代码粘在屏幕底部。
html, body {
height: 100%;
}
#wrap {
min-height: 100%;
height: auto !important; /* line no 1 */
height: 100%; /* line no 2 */
margin: 0 auto -60px;
padding: 0 0 60px;
}
footer {
height: 60px;
background-color: #f5f5f5;
}
我不明白他们为什么多次定义包装高度。据我所知,自动将根据其子元素计算高度,并且!important 将强制浏览器使用这种样式。那么在这种情况下 height: 100% 将生效。
我正在使用这段代码来测试一些东西。我写了两个小提琴,一个height: auto !important;
没有这个代码。这是我的JsFiddle1和JsFiddle2
那些小提琴是不言自明的。我只是不明白为什么会这样