我正在为我正在设计的两个网站使用 Less Framework 4。在这两种设计中,我都想在文档的顶部和底部应用一个 5 像素的边框。
问题:由于应用于body的样式,我将边框底部和边框顶部应用于html对象,因此底部边框永远不会像通常的粘性页脚情况那样粘在页面底部.
以下是两种情况的屏幕截图:
这是我用于 html 和 body 的 (LESS) CSS:pastie.org/private/us5x1vhjnwzq6zsiycnu2g
html {
border-top: solid @black 10px;
border-bottom: solid @black 10px;
background: url('img/bg.png') repeat;
}
body {
width: @8col;
margin: 0px auto;
padding: 100px 48px 84px;
background: @white;
color: rgb(60,60,60);
-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
font: 13px/20px 'OftenRegular';
-webkit-tap-highlight-color: @green;
}
我试过height: 100%
同时使用body
和html
对象,但它看起来是这样的:http: //prikonline.be/prikactie/
我应该如何将边框粘贴到页面底部?