Can a background image be larger than the div itself?

前端 未结 9 1295
天命终不由人
天命终不由人 2020-12-12 20:37

I have a footer div with 100% width. It\'s about 50px high, depending on its content.

Is it possible to give that #footer a background image that kind of overflows t

9条回答
  •  自闭症患者
    2020-12-12 20:47

    Use trasform: scale(1.1) property to make bg image bigger, move it up with position: relative; top: -10px;

    .home-hero__img{ position:relative; top:-10px; transform: scale(1.1); background: { size: contain; image: url('image.svg'); } }

提交回复
热议问题