宽度未知的居中块

Posted

tags:

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

Applications:
1. Centered block with unknown width
2. Simple block which can have float style (f.e. horizontal menu)
  1. CSS:
  2.  
  3. .menucenter {
  4. background:#e6eaff;
  5. border:#0dd 1px solid;
  6. margin:10px;
  7. height:30px;
  8. }
  9. .centermenu {float:left;position:relative;left:50%;}
  10. .cenmenu {position:relative;left:-50%;}
  11. *html .cenmenu {float:left;}
  12.  
  13. HTML:
  14.  
  15. <div class="menucenter">
  16. <div class="centermenu">
  17. <div class="cenmenu">
  18.  
  19. Menu (container) with float style
  20.  
  21. </div>
  22. </div>
  23. </div>

以上是关于宽度未知的居中块的主要内容,如果未能解决你的问题,请参考以下文章

css 将未知宽度的DIV居中

CSS 使未知宽度的DIV居中

如何水平居中未知宽度的无序列表?

html CSS3方法:未知高度宽度居中

html CSS3方法:未知高度宽度居中

如何将未知宽度的绝对定位内容居中?