简体   繁体   中英

How to fix this image in bottom middle?

I have this site:

link

I put a picture more clearly understand what they want to do.

在此处输入图片说明

CODE HTML:

<div class="col-md-12 text-center">
            <img src="wp-content/uploads/2015/10/scroll.png">
        </div>

There is positioned in that position ... and I did these things with bootstrap, somehow you know how to fix this problem?

This picture must always be there regardless of resolution

Thanks in advance!

Try the following.

Add position relative to the container

.about-content-top{
    position:relative;
}

Add position absolute to the images and set bottom to 0

<div style="position: absolute; bottom: 0px;" class="col-md-12 text-center">
    <img src="wp-content/uploads/2015/10/scroll.png">
</div>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM