+ 1
[SOLVED] How can I adjust the width of the background image?
2 odpowiedzi
+ 12
/*edited*
use background-size property*/
background-size: 20px; in body css
/*for height and width specify two values*/
background-size: 100% 100px;/* 100% of width 30rem of height
https://code.sololearn.com/WILAjT4Bf93x/?ref=app
*/
0
Thanks