Recent Posts

Showing posts with label inline-block. Show all posts
Showing posts with label inline-block. Show all posts

HTML: Removing spaces between inline-block elements

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...