我想在頁面底部放一個div,並將其寬度設置爲960px,在頁面的中心,最小的左邊框的邊距爲170px。這是我的代碼:css位置:固定溢出:自動
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
</head>
<style type="text/css">
body{width:100%;height:100%;}
*{padding:0;margin:0;}
#wrap{position:fixed;margin:0 auto;margin-left:170px;width:960px;overflow:auto;bottom:0;height:100px;}
</style>
<body>
<div id="wrap">
test test test test test test test test test test test test test test test test test test test test test test test test
</div>
</body>
</html>
但是,當屏幕寬度爲1024,該div#wrap
沒有滾動,右側部分不顯示。我如何解決它?
我在這裏測試它:http://jsfiddle.net/8cxmD/它並沒有出現在頁面中間。 – jlmakes 2011-01-13 12:38:32
看到我的最新編輯,與HTML和身體的CSS .... – jlmakes 2011-01-13 12:43:27