开发者

How can I stick a div to the bottom of another div?

开发者 https://www.devze.com 2023-04-11 19:42 出处:网络
Okay, so this is the parent div: #left { width: 50%; height: 100%; background-color: #8FD1FE; float: left;

Okay, so this is the parent div:

#left {
    width: 50%;
    height: 100%;
    background-color: #8FD1FE;
    float: left;
    opacity:0.75;
    filter:alpha(opacity=75);
    -webkit-transition: all .45s ease;  
    -moz-transition: all .45s ease; 
    transition: all .45s ease; }

And this is the div inside the div:

#reasons {
background-image:url('arrow1.png');
background-repeat: no-repeat;
height: 94px;
widt开发者_C百科h: 400px;
margin: 0 auto 0 auto; }

I've tried a bunch of different methods, but I can't seem to keep the the second div centered and stuck to the bottom of the first div.


First, make the outer div a layout parent:

#left {
     /* ... */
     position: relative; /* anything but static */
     /* ... */
}

Now let's fix the inner div to the bottom:

#reasons {
    /* ... */
    position: absolute;
    bottom: 0;
    /* ... */
}

Now it's fixed to the bottom, but we need to center it:

#reasons {
    /* ... */
    left: 50%;
    margin: 0 0 0 -200px; /* 200px is half of the width */
    /* ... */
}

See a demo on JSFiddle.


Use position: absolute; bottom: 0; to keep it to the bottom of a div and also don't forget to add the second div inside the main div

0

精彩评论

暂无评论...
验证码 换一张
取 消