Yes it is... and it sucks.
Yes.
Printable View
i would use divs buh the thing i dont get is how do you make like the background thingy, like on tables its <td background="url.gif" and i have no idea how it works on divs :D
or if you want the image to repeat:
background-image: url('urltoimage.gif') repeat; (both ways)
background-image: url('urltoimage.gif') repeat-x; (horizontal)
background-image: url('urltoimage.gif') repeat-y; (vertical)
Whats with the wasting of code "background-image" how cheap can this get:
Code:
background: url(path) repeat-x;
Or you dont even need to put a repeat for it to repeat both ways.