After some search, I did not find a proper way to center a list of <li> into a fixed width div... any solution there ?
--
take a look at the page.. dont work !
|
After some search, I did not find a proper way to center a list of -- take a look at the page.. dont work ! |
|||||||
|
|
Since
If you've changed their display property, or done something that overrides normal alignment rules (such as floating them) then this won't work. |
|||||
|
|
To center the ul and also have the li elements centered in it as well, and make the width of the ul change dynamically, use display: inline-block; and wrap it in a centered div.
|
|||||||||||||||||||||
|
|
Could either be
or
depends on how it should look like (or combining those) |
|||||
|
|
To center a block object (e.g. the To center the inline content of block object (e.g. the inline content of |
|||
|
|
|
1 Write style="text-align: center;" to parent div of ul 2 Write style=" display:inline-table;" to ul 3 Write style=" display:inline;" to li |
|||
|
|
|
If you know the width of the This will align the Example: HTML:
CSS:
|
|||
|
|
|
|||
|
|
|
Interesting but try this with floated li elements inside the ul: Example here The problem now: the ul needs a fixed width to actually sit in the center. However we want to be it relative to the container width (or dynamic), margin: 0 auto on the ul does not work. A better way is to let go of UL/Li list and use a different approach example here |
||||
|
|
|
use oldschool center-tags
:-) |
|||||||||||||
|