Possible Duplicate:
How to remove the space between inline-block elements?
If I have several child elements with display:inline-block
, I can't have whitespace between the elements because that messes up the total width. I either have to put no whitespace in the source, or "cheat" by putting an empty <?php [whitespace] ?>
between the elements, or use JavaScript to remove the empty text nodes.
Is there any way to make the whitespace not be rendered in CSS?