how to center floating elements?
how to center floating elements?
Out of context: Reply #7
- Started
- Last post
- 10 Responses
- fugged0
if you set an absolute width on the list elements and set their margin to 0 auto, it should work.
#nav li {
width:200px;
margin: 0 auto;
}- *should - meaning I haven't tried...fugged
- yep this is what i was thinking. agree it should work too.creativeworld