具有动态高度的中心DIV

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了具有动态高度的中心DIV相关的知识,希望对你有一定的参考价值。

  1. CSS:
  2.  
  3. * { margin: 0; padding: 0; }
  4. #page{display:table;overflow:hidden;margin:0px auto;}
  5. *:first-child+html #page {position:relative;}/*ie7*/
  6. * html #page{position:relative;}/*ie6*/
  7.  
  8. #content_container{display:table-cell;vertical-align: middle;}
  9. *:first-child+html #content_container{position:absolute;top:50%;}/*ie7*/
  10. * html #content_container{position:absolute;top:50%;}/*ie6*/
  11.  
  12. *:first-child+html #content{position:relative;top:-50%;}/*ie7*/
  13. * html #content{position:relative;top:-50%;}/*ie6*/
  14.  
  15. html,body{height:100%;}
  16. #page{height:100%;width:465px;}
  17.  
  18. HTML:
  19.  
  20. <div id="page">
  21. <div id="content_container">
  22. <div id="content">
  23. <p>your content</p>
  24. </div>
  25. </div>
  26. </div>

以上是关于具有动态高度的中心DIV的主要内容,如果未能解决你的问题,请参考以下文章

CSS 具有动态高度的中心DIV

具有动态高度的中心DIV

具有动态高度的中心DIV

具有动态高度的中心DIV

如何垂直对齐到具有定义宽度/高度的 div 内容的中心?

具有动态宽度和高度的垂直和水平中心块