currently, I am implementing a background image - a red curly banner in my page
.content{
background:url(image/curly-banner.png) repeat-x;
background-position : bottom;
}
now what my problem is that I want the overflow content above the banner has the red background also.
I tried:
.content{
background: red url(image/curly-banner.png) repeat-x;
background-position : bottom;
}
but this change the whole background to red. Is it possible to put the color red for the content above the banner but not bottom?