无宽度定心div
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无宽度定心div相关的知识,希望对你有一定的参考价值。
The idea here is that you contain the content you want to center in two divs, an outer one and an inner one. You float both divs so that their widths automatically shrink to fit your content. Next, you relatively position the outer div with it's right edge in the center of the container. Lastly, you relatively position the inner div the opposite direction by half of its own width (actually the outer div's width, but they are the same). Ultimately that centers the content in whatever container it's in.Check out the pictures on the website and it'll be clear.
You may need that empty div at the end if you depend on your "product" content to size the height for the "product_container".
<div class="product_container"> <div class="outer-center"> <div class="product inner-center"> </div> </div> <div class="clear"></div> </div> .outer-center { float: right; right: 50%; position: relative; } .inner-center { float: right; right: -50%; position: relative; } .clear { clear: both; }
以上是关于无宽度定心div的主要内容,如果未能解决你的问题,请参考以下文章