I have a div to which the following CSS is applied.
.content{
margin: 210px auto 0px auto;
padding: 0px 257px 0px 257px;
width: 486px;
background-image: url(/_images/stage_02.jpg);
background-repeat: no-repeat;
background-position: 0px 370px;
height: 361px;
}
If I have background-repeat set to no-repeat the background-position is fine. But what I need is for the bg to repeat down (repeat-y) from the 370px position. As soons as I change to repeat-y the background-position is nullified. ( I guess it repeats both up and down ??) Any ideas aside from creating a huge background image so repeat isn't required.
.content{
margin: 210px auto 0px auto;
padding: 0px 257px 0px 257px;
width: 486px;
background-image: url(/_images/stage_02.jpg);
background-repeat: no-repeat;
background-position: 0px 370px;
height: 361px;
}
If I have background-repeat set to no-repeat the background-position is fine. But what I need is for the bg to repeat down (repeat-y) from the 370px position. As soons as I change to repeat-y the background-position is nullified. ( I guess it repeats both up and down ??) Any ideas aside from creating a huge background image so repeat isn't required.