Responsive background image in bootstrap container

If you want the same image to scale based on the size of the browser window then here is the code.

background-image:url('../images/bg.png');
background-repeat:no-repeat;
background-size:contain;
background-position:center;

Do not set width, height, or margins.

Leave a Comment