/ Published in: CSS
URL: http://www.search-this.com/2007/09/19/when-is-a-float-not-a-float/
Add two containers to the element to be centered.
This is also needed for IE6:
1. 2. .navwrap ul{float:left;} 3. <![endif]-->
Expand |
Embed | Plain Text
1. .navwrap{ 2. float:left; 3. position:relative; 4. left:50%; 5. } 6. .navwrap ul{ 7. position:relative; 8. left:-50%; 9. }
You need to login to post a comment.
