I want a background that is the size of the viewer's screen, and I want another background that is 800pixels at all times. The 800 pixel one should be centered and behind the content of my web page. I don't want images, just two different colors. Is there a way for me to do that?
Is it possible for me to have multiple backgrounds?
Collapse
X
-
If you have a structure like:
Code:<div style="background-color: blue; width: 100%;"> <div style="background-color: red; width: 800px; margin: 0 auto;"> <p>This is your text!!!</p> </div> </div>
Comment
Comment