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,795
  • 60
  • 169
  • 277

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
  • 7,875
  • 7
  • 58
  • 91