Given this HTML:

<p>
    <span> Foo </span>
    <span> Bar </span>
</p>

and this CSS:

span { 
    display:inline-block;
    width:100px;
}

as a result, there will be a 4px wide space between the SPAN elements.
Demo: http://jsfiddle.net/dGHFV/

I understand why this happens, and I also know that I could get rid of that space by removing the white-space between the SPAN elements in the HTML source code, like so:

<p>
    <span> Foo </span><span> Bar </span>
</p>

However, I was hoping for a CSS solution that doesn't require the HTML source code to be tampered with.

I know how to solve this with JavaScript - by removing the Text nodes from the container element (the paragraph), like so:

// jQuery
$('p').contents().filter(function() { return this.nodeType === 3; }).remove();

Demo: http://jsfiddle.net/dGHFV/1/

But can this issue be solved with CSS alone?

link|improve this question

68% accept rate
7  
Great question. – thirtydot Feb 22 '11 at 12:42
@Kyle Sevenoaks - It may not always be 4px; I'd say margin-left:1em, since the gap will be one character, so will be relative to the font size. – Spudley Feb 22 '11 at 12:51
What happened to my comment? @Spudley, I read it was a 4px gap, it worked for me, but like I said it wasn't the best as it also leftified the first element. – Kyle Sevenoaks Feb 22 '11 at 12:53
@Kyle: 1em may just be 4px for you with that font at that resolution. – Lightness Races in Orbit Feb 22 '11 at 12:57
Aye, I got that. :) – Kyle Sevenoaks Feb 22 '11 at 13:01
feedback

8 Answers

up vote 75 down vote accepted

I'm totally stealing this info from a comment here:

Add font-size: 0 to a parent element.

http://jsfiddle.net/dGHFV/6/

Seems to work well in IE8 and recent versions of: Firefox, Chrome, Opera.

link|improve this answer
+1 - ha - if I'd seen the 'n new answer(s) posted' I wouldn't have posted my answer :) – Andras Zoltan Feb 22 '11 at 12:53
2  
It works in FF3.6, IE9RC, O11, Ch9. However, in Safari 5 there still remains a 1px wide gap :( – Šime Vidas Feb 22 '11 at 13:04
1  
Yea, it seems I'll have to use some fix for Safari - for instance, this: span + span { margin-left:-1px; }. – Šime Vidas Feb 22 '11 at 13:32
1  
@thirtydot Could you check out the comment of this answer. It could be that this font-size:0 trick is not such a good idea after all... – Šime Vidas Aug 1 '11 at 20:05
2  
I know the poster is looking for a CSS solution, but this solution - which is by far the most voted (30 votes vs 5 as I write this) - has strong side effects and doesn't even work cross browser. At this point it's more pragmatic to simply remove the problematic whitespace in your HTML. – Steph Thirion Nov 18 '11 at 0:21
show 7 more comments
feedback

Yahoo Grids makes heavy use of inline-block declarations (together with some hacks for IE), to place blocks next to each other without using floats. In the heart of this solution, they utilize letter-spacing and word-spacing to allow the HTML to remain as independent of presentation. So, in the spirit of Grids, without the hacks necessary for it to work properly in IE, do the following to remove the white-space with CSS:

p {
  letter-spacing: -.31em;
  word-spacing: -.43em;
}

span { 
    display:inline-block;
    width:100px;
    letter-spacing: normal;
    word-spacing: normal;
}

Remember though, that the em-measurements used relies on that it is well-defined how big an em really is across browsers. Yahoo Grids relies on Yahoo Fonts and Yahoo Reset to achieve this, so if you want to roll your own system, you should standardize the size of an em too.

link|improve this answer
Well, if Yahoo is using this then it must be a solid solution. Unfortunately, I have little experience with em values, so I think I'll stick with the font-size:0 hack. – Šime Vidas Feb 22 '11 at 13:22
ems isn't required to use this solution. It works just fine even if you use pixels to declare your font sizes everywhere else. – Philip Walton Jan 9 at 7:52
feedback

For CSS3 conforming browsers there is "white-space-collapsing:discard"

see: http://www.w3.org/TR/2010/WD-css3-text-20101005/#white-space-collapsing

link|improve this answer
hmm. will be interesting to see which browsers that actually works in. – Spudley Feb 22 '11 at 12:58
True indeed, however given that CSS3 support is still very limited, this would be a risky approach indeed. – One Stuck Pixel Feb 22 '11 at 13:02
1  
+1 but should really be +0.1(alpha) in-line with the level of support available – Andras Zoltan Feb 22 '11 at 13:05
2  
That is one neat CSS property :) Unfortunately, it seems that they're still debating on its name, so I doubt that any browser has implemented it yet. – Šime Vidas Feb 22 '11 at 13:07
1  
Dear google searchers from the year 2015. We envy you, because this will probably work for you. – Chris Feb 26 at 18:14
feedback

Try adding float:left; http://jsfiddle.net/dGHFV/3/

link|improve this answer
8  
that removes the problem but doesn't solve it - float is not inline-block; the two work very differently, and they both have their own issues. If you switch to float, you'll be swapping one set of issues for another. – Spudley Feb 22 '11 at 12:48
3  
I think float implicitly changes the display style to block. – Salman A Feb 22 '11 at 12:59
1  
@Spudley - While I agree that these are two totally different approaches, it DOES solve the problem in this context and therefore is a viable solution. – One Stuck Pixel Feb 22 '11 at 13:00
1  
@Salman A - Correct, while a span element is an inline element, it will be converted to a block element. If using this as a form of navigation tabs (which is what this appears to be??) then you're safe. If you're using these span elements inline with text then float will move them all the way to the left (or right) and hence interrupt the flow of your content. – One Stuck Pixel Feb 22 '11 at 13:01
feedback

Remember that the CSS style display:inline-block; is not well supported by older IE browsers (but then again what is??). A simple solution would simple be to float the elements left and not clear them.

See http://jsfiddle.net/dGHFV/13/ for complete code.

Kind regards, Simon

link|improve this answer
feedback

b/c i was still seeing the blasted space between inline-block elements in Safari 5, i had to switch to floating the span elements. i still needed to center them though, so I ended up needing to add an extra wrapping div. combined that w/ the font-size and it seems to work on IE7-9, FF, Chrome and Safari.

check out my fiddle

http://jsfiddle.net/KKzuz/3/

link|improve this answer
feedback

I had this problem right now and from font-size:0; i've found that in IE7 the problem remains because IE thinks "Font Size 0?!?! WTF are you crazy man?" - So, in my case i've Eric Meyer's CSS reset and with font-size:0.01em; i've a diference of 1px from IE7 to FF9, so, I think this can be a solution.

link|improve this answer
feedback

I set the style of the second span to margin-left:-3px. That works in IE, Chrome, and Mozilla.

link|improve this answer
The amount of space depends on the font size, so it's not always 3px. For instance, in the example from my question, it's 4px. – Šime Vidas Feb 14 at 19:41
feedback

Your Answer

 
or
required, but never shown

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