/ Published in: CSS
Cascading Style Sheets allow developers to exercise greater control over background images on the Web. You can make an image tile vertically across the page, horizontally across the page, or both. Simply define the style at the top of the page, and declare in the tag.
The .vert class will tile the image vertically, the .horiz class will tile it horizontally, and the .both class will cover the screen.
The .vert class will tile the image vertically, the .horiz class will tile it horizontally, and the .both class will cover the screen.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<HTML> <HEAD> <STYLE TYPE="text/css"> .vert {background-image: url(myImage.gif); background-repeat: repeat-y;} .horiz {background-image: url(myImage.gif); background-repeat: repeat-x;} .both {background-image: url(myImage.gif); background-repeat: repeat;} </STYLE> </HEAD> <BODY CLASS = "vert"> </BODY> </HTML>
URL: http://www.devx.com/tips/Tip/12957