Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Unwanted margin in inline-block list items
How to remove “Invisible space” from HTML

Why do the inline-block list items have a space in them? No matter how I make my list items into a menu, I always get spaces.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
        <title>Weird Lists</title>
        <style type="text/css">
            li {
                border: 1px solid black;
                display: inline-block;
                height: 25px;
                list-style-type: none;
                text-align: center;
                width: 50px;
            }
            ul {
                padding: 0;
            }
        </style>
    </head>

    <body>
        <ul>
            <li>One</li>
            <li>Two</li>
            <li>Three</li>
        </ul>
    </body>
</html>
share|improve this question
1  
When you say space "in them" what does that mean. The space char is between the <li></li> tags? FYI: The html you have here is not valid. You don't have a <ul></ul> or <ol></ol>. – Shiv Kumar Mar 10 '11 at 7:14
1  
where does it have a space? Add a screenshot or a demo please – JohnP Mar 10 '11 at 7:14
Do you mean horizontal space between each element. If you do then you can reset the margin and padding to 0 in your menu#headerMenu li definition and also remove the width 100px; – ZeSimon Mar 10 '11 at 7:14
Yes, the space character is between the <li> tags. About the <ul> and <ol> thing, thanks. I forgot the the <menu> tag has been deprecated. Anyway, the spaces still applies to the <li> tag. – Tyler Crompton Mar 10 '11 at 7:20
I updated the code to get rid of all the unnecessary code to help you see what's going on. – Tyler Crompton Mar 10 '11 at 7:28
show 1 more comment

marked as duplicate by bfavaretto, stealthyninja, Rafael, Toon Krijthe, ЯegDwight Oct 14 '12 at 14:17

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 77 down vote accepted

I have seen this and answered on it before:

After further research I have discovered that inline-block is a whitespace dependent method and is dependent on the font setting. In this case 4px is rendered.

To avoid this you could run all your lis together in one line, or block the end tags and begin tags together like this:

<ul>
        <li>
            <div>first</div>
        </li><li>
            <div>first</div>
        </li><li>
            <div>first</div>
        </li><li>
            <div>first</div>
        </li>
</ul>

Example here.

share|improve this answer
Ah, thanks. That's just what I was looking for. Nice post, by the way. :) – Tyler Crompton Mar 10 '11 at 7:32
No worries, glad it helped :) – Kyle Sevenoaks Mar 10 '11 at 7:41
6  
Actually it's due to word spacing, hence the 4px is dependent on the font setting. See jsfiddle.net/Cerebrl/Wt4hP – Anzeo Jun 13 '12 at 11:44
2  
Kyle, could you please update your answer so that you aren't giving people incorrect information? A 4px margin is not added to inline-block elements. As Anzeo mentions, it is due to a space being rendered between elements. The word 'margin' has specific meaning in CSS and it can mislead others into not understanding the nature of the problem. – Conexion Nov 22 '12 at 19:31
The bottom solution is better. – David 天宇 Wong Jan 14 at 1:26
show 6 more comments

Solution:

ul
{
     font-size: 0;
}

ul li
{
     font-size: 14px;
     display: inline-block;
}

You must set parrent font size to 0

share|improve this answer
1  
Huh. I never thought about that. Makes sense. The only reason I don't upvote this answer is that I can't use percentages or ems as my UOM for font-sizes inside a list. I could solve that problem with JavaScript but that's not ideal. – Tyler Crompton May 18 '12 at 23:14
4  
Great solution, worked with my complicated 2 level horizontal popup menu. – joshas May 31 '12 at 22:14
1  
Down size to this method is you can't use em or % – Anzeo Jun 13 '12 at 11:44
1  
This trick doesn't work for Safari – leen3o Aug 8 '12 at 13:39
1  
thanks, the font-size:0; solved the extra space issue for me – hanzolo Aug 9 '12 at 5:52
show 2 more comments

I would add the CSS property of float left as seen below. That gets rid of the extra space.

ul li { float:left;}
share|improve this answer

Actually, this is not specific to display:inline-block, but also applies to display:inline. Thus, in addition to JinDave's solution, this also works:

ul {
    font-size: 0;
}
ul li {
    font-size: 14px;
    display: inline;
}
share|improve this answer
But you can't use relative font sizes with this solution. But yes, I have thought about this myself. :) – Tyler Crompton Aug 10 '12 at 20:09

just remove the breaks between li's in your html code... make the li's in one line only..

share|improve this answer
I'm not one of the downvoters, but not to be rude, this questions has already been answered. – Tyler Crompton Oct 11 '12 at 17:16

Not the answer you're looking for? Browse other questions tagged or ask your own question.