I'm new to css so please explain in easy terms. I want 3 divs the same size as each other beside each other with the content in each div to be centered. What I have is a center div with a rotating image and my left and right divs each contain 3 links. I've tried everything from setting the width for each div to floating the left left and right right and centering the middle. I've looked at some other questions like this one on this site but I don't understand any of the answers. If it helps I'm using the following names for my divs:
topleftnav
topcenter
toprightnav
Code:
<div id="top">
<div id="topleftnav">
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</div>
<div id="centerright">
<div id="topcenter">
<layer id="placeholderlayer"></layer><div id="placeholderdiv"><a href="link.htm"><img alt="image2 (9K)" src="images/image2.jpg" border="0"></a></div>
</div>
<div id="toprightnav">
<ul>
<li><a href="resources.html">Resources</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="events.html">Events</a></li>
</ul>
</div>
</div>
</div>