将div放置在另一个div的底边附近


102

我有外部股利和内部股利。我需要将内部div放在外部的底部。

外部div是弹性的(例如,宽度为70%)。我还需要将内部块居中。

下图显示了所描述的化妆品的简单模型:

在此处输入图片说明


高度也有弹性吗?如果不是,则可以将内部框的边距顶部设置为(outerBoxHeight-innerBoxHeight)。
peirix

@peirix:是的,外块的高度可以改变,我们不知道
罗马

Answers:


79

经过测试并可以在Firefox 3,Chrome 1和IE 6、7和8上运行:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
                      "http://www.w3.org/TR/html4/strict.dtd">
<html><body>
<div style='background-color: yellow; width: 70%;
            height: 100px; position: relative;'>
    Outer
    <div style='background-color: green;
                position: absolute; left: 0; width: 100%; bottom: 0;'>
        <div style='background-color: magenta; width: 100px;
                    height: 30px; margin: 0 auto; text-align: center'>
            Inner
        </div>
    </div>
</div>
</body>
</html>

现场版本在这里: http //jsfiddle.net/RichieHindle/CresX/


谢谢,您的解决方案几乎是正确的。我只需要在IE的绿色块样式中添加“ // margin-left:-40px”。如果没有使用margin-left属性的hack,则您的绿色块将被放置在IE7中。谁能解释这40px的来源?
罗马

IE7将绿色div放在“外部”一词之后的水平位置。我已经更新了代码以指定“ left:0”。
RichieHindle

13

您需要为底部的一个环绕div居中。

<style>
   /* making it look like your nice illustration */
   #outer { width: 300px; height: 200px; background: #f2f2cc; border: 1px solid #c0c0c0; }
   #inner { width: 50px; height: 40px; background: #ff0080; border: 1px solid #800000; }

   /* positioning the boxes correctly */
   #outer { position: relative; }
   #wrapper { position: absolute; bottom: 3px; width: 100%; }
   #inner { margin: 0 auto; }
</style>


<div id="outer">
   <div id="wrapper"><div id="inner"></div></div>
</div>

7

CSS3 Flexbox可以很容易地将底部定位。检查Flexbox支持表

的HTML

<div class="outer">
  <div class="inner">
  </div>
</div>

的CSS

.outer {
  display: flex;
  justify-content: center; /* Center content inside */
}
.inner {
  align-self: flex-end; /* At the bottom of the parent */
}

输出:


5

在所有浏览器(包括ie6)上都能很好地工作。

<style>
    #outer{
        width: 70%;
        background-color: #F2F2CC;
        border: 1px solid #C0C0C0;
        height: 500px;
        position: relative;
        text-align: center;
    }

    #inner{
        background-color: #FF0080;
        border: 1px solid black;
        width: 30px;
        height: 20px;

        /* Position at the bottom */
        position: relative;
        top: 95%;

        /* Center */
        margin: 0 auto;
        text-align: left;
    }
</style>

<div id="outer">
    <div id="inner">
    </div>
</div>

顶部95%与底部10像素不同。您希望在调整屏幕大小时将内部框锚定在底部。
user959690 '16
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.