DooDoo
DooDoo

Reputation: 13437

Responsive Background Image for body

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

Answers (1)

Sooraj
Sooraj

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

Related Questions