0
A
回答
0
body {
margin: 0px
}
.header_wrapper{ width: 100%} //not necessary as it automatically happens
.header{
//make width whatever you want where the content goes
margin-left: auto;
margin-right: auto;
}
這是一般的想法。測試一下。添加顏色和什麼。
0
我希望你正在尋找這樣的: -
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
#header {
height:100px;
background:red;
}
#mid-content {
background:green;
}
#footer {
height:100px;
background:blue;
}
</style>
</head>
<body>
<div id="header"></div>
<div id="mid-content">Tag info
infonewest 4featured faq votes active unanswered
About cs </div>
<div id="footer"></div>
</body>
</html>
而且它完全100%的寬度....
0
我覺得只是給文本對齊中心頁腳div
1
因此,您希望頁眉和頁腳橫跨整個頁面(即100%的屏幕)伸展,而內容區域設置爲任意數字和中心在頁面中間編輯?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>100% Width of header/footer and still center content</title>
<style type="text/css">
body { margin: 0; }
#header { width: 100%; background: red; }
#content { width: 900px; background: green; margin: 0 auto; }
#footer { width: 100%; background: blue; }
</style>
</head>
<body>
<div id="header">Header Area</div>
<div id="content">Content Area</div>
<div id="footer">Footer Area</div>
</body>
</html>
相關問題
- 1. 頁眉和頁腳100%寬度,內容只有900px寬
- 2. HTML 100%的寬度頁眉和頁腳
- 3. 100%的寬度頁眉和頁腳鑽固定內容有100%的高度
- 4. 100%的頁腳/導航寬度不等於100%的頁眉/容器寬度
- 5. 固定頁眉和頁腳和100%高度的內容
- 6. 100%寬的頁眉和頁腳
- 7. IE8中100%內容高度的頁眉/頁腳佈局
- 8. 佈局頁腳100%寬度和內容,直到頁腳
- 9. 帶頁眉和頁腳以及100%內容的網頁div
- 10. 頁眉/頁腳滾動內容仍然靜止
- 11. 頁眉和頁腳之間的垂直中心內容
- 12. 頁眉和頁腳之間100%的內容
- 13. 粘性頁眉和頁腳垂直排列內容到中心
- 14. 內容頁眉頁腳
- 15. 的CSS固定高度的內容內beetwen頁腳和頁眉
- 16. 2柱體,流體寬度,100%高度,固定頁眉和頁腳
- 17. 未知頁眉,頁腳高度和中間內容與滾動?
- 18. 固定頁眉和頁腳與自動高度,滾動內容?
- 19. 100%寬度粘性頁腳+標題,但居中3列內容,高度爲100%?
- 20. div高度100%的頁眉和頁腳 - 沒有技巧
- 21. 頁眉和頁腳之間的100%高度div
- 22. 內容之間的頁眉/頁腳
- 23. 粘性頁腳問題 - 我如何得到內容高度100%減號頁眉和頁腳
- 24. 引導3容器垂直對齊中心,頁眉和頁腳
- 25. 如何在頁眉包裝內製作100%寬度的導航
- 26. 固定的頁眉,頁腳和側邊欄與滾動內容區域中心
- 27. Mule Dataweave帶頁眉和頁腳的固定寬度文件
- 28. 頁眉和頁腳的div中的內容
- 29. 固定頁眉和頁腳,頁腳不是100%
- 30. iPhone在頁眉和頁腳爲100%寬度時居中頁面時沒有正確渲染頁面
如果您展示了一些您嘗試過的示例代碼,則可以獲得幫助。 – epascarello