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
This is possible to do in CSS3 with background-size
.backgroungImage { background: url('../imageS/background.jpg') no-repeat; background-size: 32px 32px; }