I just want to ask, is it possible to create a website through CSS using images instead of just colours? I have a script that is purely CSS based and all of the script is just colours. I want it to show like a thead image etc on some areas, but not sure how to do it. Any help would be appreciated.
.cssclass { background: url(../relative image path goes here) repeat 0 0; } You could use repeat-x for across, and repeat-y for up and down. No-repeat means it will only show once. 0 0 represents the vertical and horizontal positioning of the image. If you have a specific image and page example, it's easier to be more clear. *smiles*
No offense, but could you repost that in English using the appropriate terminology? "Purely only CSS" -- you do at least need HTML to apply it to. "I have a script that is purely CSS based" -- is it script or is it CSS? CSS doesn't DO scripting, so that's gibberish. So I'm not even sure what you're asking.