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

EDIT From what I've found there is no way to remove the margin... except if you either have everything on the same line or, add comments to comment out the line breaks. example:

<div>Some Text</div><!--
--><div>Some Text</div>

not the best solution but still easier to read if you have multiple lines...

-mike

Hello!

I'm working with a few div's that are set to display: inline-block and have a set height and width - In the html if there is a line break after each div there is an automatic 5px margin add to the right and bottom of the div.

example:

<div>Some Text</div>
<div>Some Text</div>

Is there a property that I've overlooked that will allow me to reset the automatic margin?

Thanks!

share|improve this question
eh, i ment to title this, display: inline-block extra margin ;) – mike Dec 2 '09 at 15:44
I've updated the title for you ;) – ChristopheD Dec 2 '09 at 15:48
Its not extra margin in any way. The blocks are treated as inline content and get word related CSS applied. word-spacing (each block is a word) and font-size is applied to white space between each block. – Darwin May 4 '12 at 8:49
Some nice tricks which have not been mentioned: css-tricks.com/fighting-the-space-between-inline-block-elements – John Magnolia Oct 25 '12 at 16:07

8 Answers

up vote 52 down vote accepted

The divs are treated as inline-elements. Just as a space or line-break between two spans would create a gap, it does between inline-blocks. You could either give them a negative margin or set word-spacing: -1; on the surrounding container.

share|improve this answer
wow.. I never even thought to give it negative spacing! – mike Aug 31 '10 at 14:01
Setting word-spacing to 0 worked for me. The only frustrating thing is that word-spacing is inherited, so it has to be explicitly redefined for child elements. – Josiah Sprague Oct 4 '10 at 15:28
1  
In Safari, word-spacing: 0 fixes the spacing but word-spacing: -1em does not. Firefox is the opposite. I'd remove the whitespace between the elements in the html code if possible. Don't yet know what IE7 does... – coltraneofmars Dec 15 '10 at 19:57
3  
The alternative is to use float:left on all the elements and set the container to overflow:auto to clear it – bcoughlan Apr 4 '11 at 18:41
The word-spacing trick may work for fixing the horizontal extra margin, but it does not fix (in any browser that i've tried) the vertical margin between two inline-block elements that are on separate lines, one below the other. Is there a similar fix for that? – matteo Nov 12 '11 at 13:39
show 3 more comments

Setting font size to zero also removes the extra margin.

.container {
  font-size: 0px;
  letter-spacing: 0px;
  word-spacing: 0px;
}

.container > div {
  display: inline-block;
  margin: 0px;
  padding: 0px;
  font-size: 15px;
  letter-spacing: 1em;
  word-spacing: 2em;
}

The example would then look like this.

<div class="container">
  <div>First</div>
  <div>Second</div>
</div>

A jsfiddle version of this. http://jsfiddle.net/QtDGJ/1/

White spaces effects inline elements. This should not come as a surprise, we see it every day with span,strong and other inline elements.

share|improve this answer
+1 for good technique. – Ahsan Rathod Nov 26 '11 at 7:59
Works very well. Note that if you're using letter-spacing or word-spacing you need to set them to 0 as well for this technique to work. – djanowski Jan 4 '12 at 1:37
So true! But you only have to set them if you are not using a em value. – Darwin Jan 17 '12 at 8:33
Setting letter-spacing, word-spacing, and font-size to 0 fixed the horizontal margin issue for me. – Josh Apr 9 '12 at 14:15
+1 - Tried Daniels solution and it worked fine in firefox, but not in safari or chrome, but setting the font-size to 0 did the trick in all three browsers. – Krister Andersson Oct 19 '12 at 10:06
show 1 more comment

A year later, stumbled across this question for a inline LI problem, but have found a great solution that may apply here.

http://robertnyman.com/2010/02/24/css-display-inline-block-why-it-rocks-and-why-it-sucks/

vertical-align:bottom on all my LI elements fixed my "extra margin" problem in all browsers.

share|improve this answer
Found my own solution, a year later, but didn't work on my current issue. Please note this is apparently specific to the problem. – Steve Sep 17 '11 at 13:43
Thanks! this resolves my specific problem with p#myid { display: inline-block } – 3oheme Sep 19 '11 at 9:04
2  
I found that mozilla ff and chrome has different defaults or at least render it differently until you specify vertical-align.. so it's better always specify it explicitly. – Andy Sep 23 '11 at 14:37

For the record, that margin and padding resetting didn't do the trick for me, but this quote from one of the comments above turned out to be crucial and solved the issue for me: "If i put the divs on the same line it margin disappears."

share|improve this answer

There are a number of workarounds for this issue which involve word-spacing or font size but this article suggests removing the margin with a right margin of -4px;

http://designshack.net/articles/css/whats-the-deal-with-display-inline-block/

share|improve this answer

Cleaner way to remove those spaces is by using float: left; :

DEMO

HTML:

<div>Some Text</div>
<div>Some Text</div>

CSS:

div {
    background-color: red;
    float: left;
}

I'ts supported in all new browsers. Never got it why back when IE ruled lot's of developers didn't make sue their site works well on firefox/chrome, but today, when IE is down to 14.3 %. anyways, didn't have many issues in IE-9 even thought it's not supported, for example the above demo works fine.

share|improve this answer
there are lots of other issues with floating and this question pertains to inline-block not an alternative solution – CoryDanielson Feb 20 at 23:58
Back in '09 i would have agreed with you, but modern browsers do support this. just try and open the Demo and see for yourself. – Kuf Feb 21 at 10:27
you're still dealing with floats and going to have clearing issues. and this question is still not about floats. it's about inline-block – CoryDanielson Feb 21 at 18:00

Can you post a link to the HTML in question?

Ultimately you should be able to do:

div {
    margin:0;
    padding: 0;
}

to remove the spacing. Is this just in one particular browser or all of them?

share|improve this answer
no link to it right now... but yeah, i have a reset(*) that sets margin and padding to 0. Seems to be a cross browser issue. Not one browser does it correctly.... If i put the divs on the same line it margin disappears. I can do it that way but i'm extremely anal about clean html! and... I sometimes use inline-block for my ul navigations and i can never get that margin to disappear. thanks;) – mike Dec 2 '09 at 16:33
update... with all of them(8 divs 2 rows of 4) on the same line, the bottom margin is ignored.... its super strange. code looks like: * { margin: 0; padding: 0; } div { margin: 0 10px 10px 0; } <div>Some Text</div><div>Some Text</div> – mike Dec 2 '09 at 16:42
What DOCTYPE are you using? – Jeepstone Dec 4 '09 at 10:06
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">; – mike Dec 11 '09 at 2:04

After struggling with this issue too many times I found a very elegant solution in HTML 5. In HTML 5 you should not close several (li,p,etc) tags; the ambition to become XML is forever gone. For example, the preferred way to do a list is:

<ul>
   <li>
       <a ...>...</a>
   <li>
       <a ...>...</a>
</ul>

Browsers MUST close the LI and they must do this without introducing whitespace, solving this problem. If you still have the XML mindset it feels wrong but once you get over that it saves many a nightmare. And this is not a hack since it relies on the wording of the HTML 5 spec. Better, since not closing tags is pervasive I expect no compatibility issues (not tested though). Bonus is that HTML formatters handle this well.

A little worked out example: http://cssdesk.com/Ls7fK

share|improve this answer

protected by Will Dec 21 '10 at 14:24

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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