是否可以将div底部中心与宽度对齐?

Har*_*rry 1 css

是否可以将div中心对齐(即)总是需要在底部中心使用指定宽度的固定位置的div.我知道要左或右吗?有什么办法吗?

Shi*_*idi 14

我想这可能会对你有所帮助

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 
 }    
Run Code Online (Sandbox Code Playgroud)

HTML

<div id='parent'>
    <div id='child'>
      centered div
    </div>
</div>
Run Code Online (Sandbox Code Playgroud)