Possible Duplicate:
Unwanted margin in inline-block list items
A Space between Inline-Block List Items
To avoid the gap between to li
set to display: inline-block
, I've set the font size of the ul
to 0. Hence the nature of em sizing, 0 is now passed as the base font-size for all li
, which practically means that one can't see them.
Is there any way to solve this problem without setting font-size: 14px
(for example) to the list items?