How to stretch the background image to fill a div

后端 未结 10 1159
慢半拍i
慢半拍i 2020-12-04 10:27

I want to set a background image to different divs, but my problems are:

  1. The size of image is fixed(60px).
  2. Varying div\'s size

How

10条回答
  •  感情败类
    2020-12-04 11:18

    You can use:

    background-size: cover;
    

    Or just use a big background image with:

    background: url('../images/teaser.jpg') no-repeat center #eee;
    

提交回复
热议问题