Hey I want one of my div's background to tile vertically but not horizontally...SPooky showed how to make it tile horizontally but how do you tile vertically?
Thanks
CSS: Background
Started by InFnit, Mar 29 2005 02:27 PM
2 replies to this topic
#1
Posted 29 March 2005 - 02:27 PM
#2
Posted 29 March 2005 - 02:42 PM
.vert {background-image: url(myImage.gif); background-repeat: repeat-y;}
.horiz {background-image: url(myImage.gif); background-repeat: repeat-x;}
taken from:
http://www.devx.com/tips/Tip/12957
.horiz {background-image: url(myImage.gif); background-repeat: repeat-x;}
taken from:
http://www.devx.com/tips/Tip/12957
#3
Posted 29 March 2005 - 04:00 PM
Or just:
.vert {
background: url(image.png) top repeat-y;
}
I think...
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users
