can you create space between background image repeats?

前端 未结 1 1143
清酒与你
清酒与你 2021-01-12 00:45

Is it possible to repeat a background image, but specify a number of pixels before the next repeat starts.

i.e. background: url(img.png) [after 40px] rep

相关标签:
1条回答
  • 2021-01-12 01:33
    background-repeat: space;
    background-repeat: round; // round(520 / 100) = round(5.2) = 5
    

    The browser will render five images in the space but adjust the image width to 104px (520px / 5). The image is made wider to fit the container. Full details here or read Background Size property

    0 讨论(0)
提交回复
热议问题