I've fooled around with HTML a little bit before but I'd still consider myself a beginner. I just learned about CSS today and I'm trying to figure it out. I need 3 background images that are fixed and I learned that the only way to do this is to create some divisions and put background images into them. I've tried many times, but either the background image won't show up in my div or it overrides the main background I have set up for the webpage already (The main background image being my 1st image of 3, so trying to create 2 divisions for 2 addtional images)
This is the general building block I'm working off of, though this isn't actually correct:
<div>
background-color:transparent;
background-image:url(image.jpg);
background-attachment: fixed;
background-position:left center;
background-repeat:no-repeat;
</div>
Can anyone give me a blueprint for a division with a background image in it that won't override the main background for the webpage itself?
Thank You for any help.



