Reputation: 13437
I recently design a web page using Bootstrap 3.3.7
.
I want to use an image for body that be responsive. When user change window size, the size of image also change.
thanks
Upvotes: 0
Views: 127
Reputation: 10567
You can try the following on body.
background-image:url('image.png');
background-repeat:no-repeat;
background-size:contain;
background-position:center;
And do not set any height or width for the image.
Upvotes: 3