宽度未知的居中块
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了宽度未知的居中块相关的知识,希望对你有一定的参考价值。
Applications:1. Centered block with unknown width
2. Simple block which can have float style (f.e. horizontal menu)
CSS: .menucenter { background:#e6eaff; border:#0dd 1px solid; margin:10px; height:30px; } .centermenu {float:left;position:relative;left:50%;} .cenmenu {position:relative;left:-50%;} *html .cenmenu {float:left;} HTML: <div class="menucenter"> <div class="centermenu"> <div class="cenmenu"> Menu (container) with float style </div> </div> </div>
以上是关于宽度未知的居中块的主要内容,如果未能解决你的问题,请参考以下文章