水平居中对齐div和页面底部
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了水平居中对齐div和页面底部相关的知识,希望对你有一定的参考价值。
html: <div class="parent"> <div class="child"> Content here </div> </div> CSS: .parent{ position:fixed; bottom:0px; width:100%; //width should be 100% } .child{ width:100px; //min width should give to center the div. margin:0px auto; //here it will make center }
以上是关于水平居中对齐div和页面底部的主要内容,如果未能解决你的问题,请参考以下文章