Is it possible to set the size of the background image with CSS?
I want to do something like:
background: url(\'bg.gif\') top repeat-y; background-si
If you want to set background-size in the same background property you can use use:
background-size
background
background:url(my-bg.png) no-repeat top center / 50px 50px;