I am trying to put a repeating background image on a website with basic CSS
background-image: url('url_here');
background-attachment: fixed;
background-repeat: repeat;
however, id would like to be able to resize the image im using when updating using javascript. CSS has a function
background-size: 300px;
but unfortunately, the COM style object doesnt - see here for what it can do for the background. This leaves me with one option: using an HTML image that repeats, which I can edit with a COM style object.
So, cooked, my question is: is there a way to repeat an HTML image that is NOT a background image? Any help is greatly appreciated.
source
share