我正在創建一個網站,我已經創建了一個結構,但我正面臨高度問題。這裏是我期待網站的高度問題
,但是這是我得到
下面是CSS:
html {height:100%!important;}
body {
margin:0;
font:12px/15px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
color:#8a8a8a;
min-width:1000px;
background:#fff;
min-height:100%!important;
}
#wrapper {
position:relative;
min-height:100%;
overflow:hidden;
background:url(../images/wrapper.jpeg) repeat-y;
}
#content {
float:left;
width:100%;
min-height:100%;
}
你真的希望文字佔據整個區域嗎?如果是這樣,只需使用'height:100%;' –
我想要一個完整的長度左右部分 – Zerotoinfinity
這個我用你的一些代碼做的例子應該可以幫助你一點:http://jsfiddle.net/fA4HL/3/ –