0
A
回答
2
這個page討論了使用css實現垂直居中的一些不同方法。我之前用過方法2,但我認爲所有這些都是最好的。
1
設置固定寬度和自動邊距。
<style type="text/css">
#center {
width:300px;
margin-left:auto;
margin-right:auto;
}
</style>
<body>
<div id="center"></div>
</body>
+0
我知道這一點。我想要做的不僅僅是側面......但是頂部和底部。 – Ockonal 2009-09-13 18:59:16
0
這是做你想做的,但它不漂亮。
<div style="margin: 0 auto;width:80%;height:80%;">
This will probably not work for you however because you did not provide code
</div>
相關問題
- 1. div div div div
- 2. Div div div div下的div
- 3. 如何初始化HtmlDiv
- 4. position:absolute,div div div
- 5. CSS - div div div
- 6. style div div div的父div
- 7. 100%div div 100%div
- 8. div div div centering CSS
- 9. 將div和aspx頁面加載到html頁面的div中?
- 10. 在div div組中插入Div div jQuery
- 11. 獲取div div內的父div div
- 12. div div div margin margin of parent div
- 13. Div Div下的CSS Div
- 14. div div中的HTML div
- 15. div的頂部div div
- 16. div div div content fixed on scroll?
- 17. 爲什麼div div div
- 18. div div opacity outside in other div
- 19. div(menu)not div div(maincontent)
- 20. 浮動右div div左div
- 21. div div下的CSS div
- 22. 居中div div中的div
- 23. jQuery拉出div div div
- 24. 在父div的div div由div jquery中的父div class
- 25. div div divs後
- 26. 覆蓋div div
- 27. 居中div div
- 28. div div與jquery
- 29. 在getElementById div div
- 30. Javascript not div div
Dupe:http://stackoverflow.com/questions/396145/whats-the-best-way-of-centering-a-div-vertically-with-css – 2009-09-13 19:22:24