0

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

Arian
  • 12,793
  • 66
  • 176
  • 300

1 Answers1

3

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.

Sooraj
  • 9,717
  • 9
  • 64
  • 99