Is there anything in HTML/CSS that tells the browser to ignore whitespace completely?

So many times when you want to put, say, two images next to each other - you try desperately to keep the HTML readable, but the browser puts a space between them.

So instead of something like this:

<img src="images/minithing.jpg" alt="my mini thing" />
<img src="images/minithing.jpg" alt="my mini thing" />
<img src="images/minithing.jpg" alt="my mini thing" />
<img src="images/minithing.jpg" alt="my mini thing" />

you end up with this

<img src="images/minithing.jpg" alt="my mini thing" /><img src="images/minithing.jpg" alt="my mini thing" /><img src="images/minithing.jpg" alt="my mini thing" /><img src="images/minithing.jpg" alt="my mini thing" />

Which is just so horrible!

link|improve this question

3  
As far as I know, most modern browsers do keep the HTML structure, and ignore whitespace, I know IE has a whitespace problem sometimes, I'm having an issue with it right now but whenever I view my source, it's pretty much the same as I designed it in Dreamweaver. – Kyle Sevenoaks Apr 13 '10 at 8:33
1  
Unrelated to the problem: there's a subtle difference between HTML and XHTML. You're talking about HTML, but posting XHTML code (in HTML the img tag is a shorttag). – BalusC Apr 13 '10 at 16:09
11  
@Kyle that simply isn't true at all. – Evan Carroll Aug 25 '10 at 19:11
feedback

9 Answers

up vote 28 down vote accepted

Oh, you can really easy accomplish that with a single line of CSS:

#parent_of_imgs { white-space-collapse: discard; }

Disadvantage, you ask? No browser has implemented this extremely useful feature (think of inline blocks in general) yet. :-(

What I did from time to time, although it's ugly as the night is dark, is to use comments:

<p><!--
  --><img src="." alt="" /><!--
  --><img src="." alt="" /><!--
  --><img src="." alt="" /><!--
  --><img src="." alt="" /><!--
--></p>
link|improve this answer
Although I find the commenting way horrifyingly ugly, I use it. Just make it so your IDE displays the comments in a light color so its not "in your face" =P – ItzWarty Apr 13 '10 at 19:41
1  
Apparently that property has been renamed a lot; as of now, the page says "Major Changes...February 2011...Renamed ‘white-space-collapsing’ to ‘bikeshedding’." – ysth Jun 28 '11 at 19:08
And later css working group minutes say it will be text-space-collapse. – ysth Jun 28 '11 at 19:58
3  
CSS would be text-space-collapse:trim-inner with latest changes in specification – yunzen Jan 11 at 11:42
2  
Thanks for the update. Let's see, when it gets implemented. – Boldewyn Jan 11 at 15:56
show 1 more comment
feedback

The browsers does ignore whitespace in most cases when it's next to a block element.

The problem with images (in this case) is that they are inline elements, so while you write them on separate lines, they are actually elements on the same line with a space between them (as the line break counts as a space). It would be incorrect for the browser to remove the spaces between the images, writing the image tags with line breaks between them should be handled the same way as writing the image tags on the same line with spaces between them.

You can use CSS to make the images block elements and float them next to each other, that solves a lot of problems with spacing, both the space between the images and the spacing on the text line below images.

link|improve this answer
I don't think the question has anything to do about block/inline elements. I think the asker is wonder why his HTML looks like that when viewing the page source, not how they appear on the page. – Lee Theobald Apr 13 '10 at 8:57
I think using CSS to hack around something that can be very easily fixed in the HTML source is overkill and likely to cause you problems in any complex layout. It also doesn't degrade well. – Jon Grant Apr 13 '10 at 8:59
1  
@Lee: Sorry, you got it wrong. (See IP's answer to Matts comment to your answer.) – Guffa Apr 13 '10 at 10:52
4  
@Jon: It's not about "hacking around" something. The layout should preferrably be controlled by the CSS, so specifying how the images are displayed should actually rather be in the CSS than in the HTML. – Guffa Apr 13 '10 at 10:56
It is hacking if you have to float the images (what if they are inline with something else? now you have to float everything. what if there is already something else floated? now you have to break the semantic layout of your page to deal with it) or use relative positioning that relies on the size a space character is rendered. – Jon Grant Apr 14 '10 at 11:57
show 2 more comments
feedback

Unfortunately, newlines count as space characters.

The best solution I have come up with is to use the whitespace inside the tags themselves, instead of outside:

  <img src="images/minithing.jpg" alt="my mini thing" 
/><img src="images/minithing.jpg" alt="my mini thing"
/><img src="images/minithing.jpg" alt="my mini thing"
/><img src="images/minithing.jpg" alt="my mini thing" />

It's not ideal, either, I know. But at least it's not some bizarre CSS hack that relies on the size a space character is rendered or resorting to relative positioning, or JavaScript :)

link|improve this answer
A full 19 seconds before the same answer by myself. Whether this is aesthetically pleasing enough only the opening poster can decide. – rrrr Apr 13 '10 at 8:54
I've also used this, although it does cause some weaker HTML tools to barf horribly. (Not so much XHTML.) – system PAUSE Feb 14 '11 at 18:48
feedback

You can do this with CSS rules.

Not by telling the browser to ignore white-space but rather by writing rules to display your images as you want them to be.

I would start with floating the images left, but i can't say much more without knowing some details about the rest of your page's content and structure... It may be useful to clear the next HTML element from floating.

Try this CSS rule:

img { float: left; }

Full HTML code to check it out:

<!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" xml:lang="en" lang="en">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
    <title>HTML/CSS Test page</title>
    <style type="text/css" media="screen">
    img
    {
      float: left;
      width: 2em;
      height: 2em;
    }
    </style>
  </head>
  <body>
    <p>
      <img src="img.png" alt="image" />
      <img src="img.png" alt="image" />
      <img src="img.png" alt="image" />
    </p>
  </body>
</html>
link|improve this answer
1  
May i have some clue about the downvote here? Floating images does indeed remove the white-space in the case described above... – Arko Apr 13 '10 at 8:55
Maybe because you're using XHTML and/or it doesn't validate. But OK, the point is clear :) Here's a countervote. – BalusC Apr 13 '10 at 16:08
@BalusC: Nice point, :-/ the code is now valid, thx. I added that code after the downvote though... – Arko Apr 13 '10 at 19:43
3  
@Jon Grant: I'm afraid i can't at all be with you on this point. A layout may indeed break if you put a float at a random place somewhere without thinking... But if you are the one who is crafting the layout i bet you do know how to do it well. Floats are used all around the web, i don't see much broken layouts out there... – Arko Apr 14 '10 at 12:08
1  
I agree fully with Arko, the best way to make CSS layouts extremely brittle is to use float liberally. – Evan Carroll Aug 25 '10 at 19:04
show 1 more comment
feedback

you can set the font-size of the container to 0 and the white-space disappears!

link|improve this answer
1  
+1. It's a horrible hack, but it works, and seems like the best solution in the absence of support for the white-space-collapse style. (but note: if you have text in the child elements, you also need to set the font size back to normal again for them, or all your content will vanish) – Spudley May 27 '11 at 9:43
You also lose the ability to use percentages for font sizes as they are calculated as a percentage of the parent container (which will be 0) – gsteinert Aug 19 '11 at 14:32
feedback

This is a simple question and the answer is not so simple.

One can try to avoid the spaces in the source code which is not always achievable in CMS, because there they are automatically inserted by the system. If you want to change this you have to dig deep inte the CMS's core code.

Then you can try to use left floated images. But this is dangerous. At first you don't really have a control over vertical-alignment by definition. And secondly, you run into total chaos if you have so many floated elements, that they stretch over more than one line. And if you have a layout that relies on left floated elements (most of them do so today) you can even break some outer floating styles, if you clear floating after the images. This can be overridden, if you float any surrounding element. Rather not to be recommended.

So the only solution would be a CSS declaration that handles the process of whitespace handling. This is not part of any standard (as CSS 3 is not yet finished).

I prefer the no whitespace in HTML variant. With using drupal as CMS this can be achieved rather easy in your template.php and theming files. Then I choose inline-block.

P.S.: inline-block is rather complicated to get in the different browsers. For FF 2 you need display: -moz-inline-box. The rest and IE8 can have display: inline-block right after. And for lte IE 7 you need display: inline in a following separate declaration (preferrably via conditional comments).

edit

What I use for making a element inline-block

elem.inline {
  display: -moz-inline-box; /* FF2 */ 
  display: inline-block; /* gives hasLayout in IE 6+7*/
}
/* * html hack for IE 6 */
* html elem.inline {
  display: inline; /* elements with hasLayout and display inline behave like inline-block */
}
/* * +  html hack for IE 7 */
* + html elem.inline {
  display: inline; /* elements with hasLayout and display inline behave like inline-block */
}
link|improve this answer
feedback

Images are per default inline elements, that’s why you see whitespace between them. If you listen to your example in a screen reader, you immediately know why: without whitespace, you’d hear:

my mini thingmy mini thingmy mini thingmy mini thing

So, use my mini thing. (dot plus whitespace at the end) as alt text or push the images with CSS together. Do not just remove the whitespace in the code.

link|improve this answer
Where did you get the idea that image is some sort of blank, and alt is the method of filling it in to make a grammatically and punctually correct sentence, rather than alt being a short description of the image? – Evan Carroll Aug 25 '10 at 19:07
By listening in JAWS and browsing without images. – toscho Aug 25 '10 at 22:39
feedback

You could make the images floating block-elements instead of inline-elements.

edit: That’s basically what Guffa says too. Why am I wrong and he is right?

link|improve this answer
1  
That won't yield the same result as putting all images on one line. – Arko Apr 13 '10 at 8:46
Yep, you still have to float them. I usually convert all images to block elements and do the layout via CSS. – David Apr 13 '10 at 8:49
You see, Guffa told you the same thing. – David Apr 13 '10 at 8:55
feedback

Minified your HTML!

It is good practice to minified the response before it is rendered to the browser.

So unless you need the space (and you hard coded it using &nbsp), you always remove the spaces in the minification process.

link|improve this answer
Hm, I was afraid of this. I really hope this isn't going to be another case of some javascript hackery to make HTML actually work – Paul Apr 13 '10 at 8:42
that seems especially scary as it requires re-rendering the entire wrapper. – Evan Carroll Aug 25 '10 at 19:05
feedback

Your Answer

 
or
required, but never shown

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