How to stretch the background image to fill a div

后端 未结 10 1145
慢半拍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:10

    Try something like this:

    div {
        background-image: url(../img/picture1.jpg);
        height: 30em;
        background-repeat: no-repeat;
        width: 100%;
        background-position: center;
    }
    

提交回复
热议问题