這是一段時間,因爲我手動編碼一個網站,現在我有問題,我的頂邊緣導致100%的高度給一個討厭的滾動條,如在小提琴中看到的: http://jsfiddle.net/qKGzA/頁邊距導致100%的高度給水平滾動條
我不知道如何擺脫這一點,而不切斷頁腳(如使用溢出:隱藏)。 它可能是一個簡單的解決方案,但我想不起來:)
感謝您的幫助!
我的代碼:
html, body{
background-color:#ececec;
height:100%;
width: 100%;
margin:0;
padding:0;
}
div#wrapper{
background-color:#ffffff;
width: 962px;
height: auto !important;
min-height: 100%;
height:100%;
margin:0 auto;
padding:20px 15px 0px 15px;
position:relative;
display:block;
}
footer{
background-color:#363636;
width:95%;
height: 15px;
margin:0;
padding:10px;
position:absolute;
bottom:0;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
color:#e1e1e1;
text-align:center;
}
footer p{
margin:0;
padding:0;
display:inline-block;
}
footer p.divider{
margin:0 20px;
}
HTML:
<body>
<div id="wrapper" >
<header>
header header
</header>
<menu> Menu menu</menu>
<section>
section section
</section>
<footer>
<p>x</p><p class="divider">~</p>
<p>x</p><p class="divider">~</p>
<p>x</p><p class="divider">~</p>
<p>x</p>
</footer>
</div>
</body>
盒子大小參考http://www.w3schools.com/cssref/css3_pr_box-sizing.asp – Wayne