Rifts Posted November 2, 2011 Share Posted November 2, 2011 hey guys! I'm going a little crazy here I have a div 960px wide, I'm trying to horizontally center three divs inside this 960px div. The two outside divs are 350px and the middle one is 10px. I cant seem to get them centered. Here is what I'm doing: html: <div id="main"> <div id="lefthalf"> </div> <div id="middle"> </div> <div id="righthalf"> </div> </div> css: #lefthalf { float:left; background-color: red; width: 350px; height: 400px; border: 1px solid white; } #middle { float:left; background-color: blue; width: 10px; height: 400px; border: 1px solid white; } #righthalf { float:left; background-color: green; width: 350px; height: 400px; border: 1px solid white; } I cant figure out how to center them since they are floated left Quote Link to comment Share on other sites More sharing options...
Rifts Posted November 2, 2011 Author Share Posted November 2, 2011 nvm I figured it out by putting those three divs in a div and centering that div. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.