I am trying to achieve a unique effect with CSS3 backgrounds. I want the second background image to start repeating from the middle of the screen down, rather than from the top.
Below is my CSS code:
body {
background: url('../img/carbon_fibre.png'), url('../img/carbon_fibre_blue.png');
background-repeat: repeat, repeat;
background-position: center left, left top;
}
If anyone has any suggestions on how to resolve this issue, it would be greatly appreciated!
Thanks in advance, Christian