儘管我將頁腳的寬度設置爲100%,但它的寬度方面卻超過了100%。任何想法爲什麼?我知道問題是寬度,因爲當我刪除100%時,它不顯示滾動條。該頁面被分解爲身體>包裝>頁腳 這裏是我的代碼:將我的頁腳寬度設置爲100%顯示滾動條
#footer {
margin-top: 30px;
color: white !important;
padding-bottom: 15px;
background: black;
text-align: center;
padding: 20px;
height: 40px;
min-width: 1000px;
width:100%;
position:absolute;
bottom:0;
}
而且有身體的CSS:
body {
font: normal 12pt Georgia, serif;
color: #111;
background: #990000;
margin: 0 auto;
text-align: center;
background-position: 50% 50%;
min-height: 100%;
margin:0;
padding:0;
height:100%;
}
和包裝CSS:
#wrapper {
min-height:100%;
position:relative;
}
謝謝jsfiddle是一個非常有用的工具! –