I'm already using a tile for the background of my body.
I need to also tile an image from top left to top right(x axis) to "complete" or extend a logo that is placed top center of my page with a lower z- index that the image to be tiled.
Can this be acomplished using css ?
I need to also tile an image from top left to top right(x axis) to "complete" or extend a logo that is placed top center of my page with a lower z- index that the image to be tiled.
Can this be acomplished using css ?
Code:
top center logo css :
#logo {
position: absolute;
left: 0px;
top: 0px;
z-index: 1
}
body css:
background-image: url('images/st.gif');
What would the x-axis tile css be for my filler to the logo ?