I'm using bootstrap jumbotron, and including a background image. Resizing the screen makes the image tile and repeat, whereas I want the image to be responsively resized.
<div> <div> <h1>About</h1> </div>
</div>How would you go about making the image responsive? The site is HERE. Thanks for your ideas!
28 Answers
The simplest way is to set the background-size CSS property to cover:
.jumbotron { background-image: url("../img/jumbotron_bg.jpg"); background-size: cover;
} 1 This is what I did.
First, just override the jumbotron class, and do the following:
.jumbotron{ background: url("bg.jpg") no-repeat center center; -webkit-background-size: 100% 100%; -moz-background-size: 100% 100%; -o-background-size: 100% 100%; background-size: 100% 100%;
}So, now you have a jumbotron with responsive background in place. However, as Irvin Zhan already answered, the height of the background still not showing correctly.
One thing you can do is fill your div with some spaces such as this:
<div> <div> About <br><br><br> <!--keep filling br until the height is to your liking--> </div>
</div>Or, more elegantly, you can set the height of the container. You might want to add another class so that you don't override Bootstrap container class.
<div> <div> About </div>
</div>
.push-spaces
{ height: 100px;
} 0 I found that this worked perfectly for me:
.jumbotron {
background-image: url(/img/Jumbotron.jpg);
background-size: cover;
height: 100%;}You can resize your screen and it will always take up 100% of the window.
1This is how I do :
<div> <h1>Hello</h1>
</div> 3 You could try this:
Simply place the code in a style tag in the head of the html file
<style> .jumbotron { background: url("") center center / cover no-repeat; }
</style>or put it in a separate css file as shown below
.jumbotron { background: url("") center center / cover no-repeat; }use center center to center the image horizontally and vertically. use cover to make the image fill out the jumbotron space and finally no-repeat so that the image is not repeated.
1TLDR: Use background-size: 100% 100%;.
background-size: cover; may cut off some parts of the image producing poor results.
Using background-size: 100% 100%; you force the image to take up 100% of the parent element for both height and width.
See W3Schools for more information on this.
Here is a working, responsive jumbotron background image:
<div> <h1>Welcome</h1> <p>Your message here</p> <p><a href="">Learn more »</a></p>
</div> Unfortunately, there is no way to make the div height respond to the background-size. Easiest solution that I have used is adding an img tag within your jumbotron that contains that background image.
The below code works for all the screens :
.jumbotron { background: url('backgroundimage.jpg') no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; background-size: cover; -o-background-size: cover;
}The cover property will resize the background image to cover the entire container, even if it has to stretch the image or cut a little bit off one of the edges.