vote up 0 vote down star

In IE6 the paragraph following the empty paragraph is displayed with the background color of the empty paragraph, which I'm guessing is wrong! It works correctly in Firefox, but I haven't checked IE7.

Is there a CSS solution to this problem, or do I have to remove the empty element?

(I would rather not have to remove empty elements, as that involves writing code to check whether every element is empty before outputting it)

The behaviour is unchanged using either strict or transitional doctypes (added this comment in response to answers)

Interestingly the effect does not occur with text color, only background color.

<html>
<head>
</head>
<body>

<p style='background-color:green'>Green content</p>
<p style='background-color:red'>Red content</p>
<p>Unstyled background working because previous red element is not empty</p>

<p style='background-color:green'>Green content</p>
<p style='background-color:red'></p>
<p>Unstyled background broken because previous red element is empty</p>

<p style='color:green'>Green content</p>
<p style='color:red'>Red content</p>
<p>Unstyled text color working because previous red element is not empty</p>

<p style='color:green'>Green content</p>
<p style='color:red'></p>
<p>Unstyled text color working even though previous red element is empty</p>

</body>
</html>
flag
background-color is not inherited – Andy Ford Nov 14 '08 at 5:51
Thanks for pointing that out. I never realised that it simply uses a default of transparent. Much simpler! – John Rees Nov 15 '08 at 3:12

5 Answers

vote up 1 vote down check

An empty paragraph is meaningless - which means you're probably writing the wrong HTML.

Also, your example doesn't have a DOCTYPE - a valid DOCTYPE is essential for getting browsers to correctly interpret your code, without one you'll be stuck in quirks mode.

But anyway, the simplest workaround for this bug is simply set a background for your current unstyled element.

link|flag
I agree the output is cleaner without empty paragraphs, but I posted the question because I wanted a workaround that doesn't involve checking whether an element is empty before outputting, especially since my html with empty elements is completely "valid". I agree your workaround is the best yet. – John Rees Nov 17 '08 at 0:54
vote up 1 vote down

I just tested that in IE7 and can confirm that it happens there too.

It looks like the unstyled paragraph does not actually have a red background, it's just that IE7 is drawing the red box for the empty paragraph and then drawing the following paragraph over the top.

You can see this for yourself by trying this code:

<p style='background-color:green'>Green content</p>
<p style='background-color:red; margin-left:50px'></p>
<p>Unstyled background broken because previous red element is empty</p>

You should see that the red paragraph is 50px in from the left.

Why it's doing this is anyone's guess. Adding some code to check if the paragraph is going to be empty isn't too hard, plus it removes useless markup from your output and avoids this problem altogether. Give that a go?

link|flag
Although in this case I could easily add code to remove one empty element, I am interested in solving the general problem in a web application... where I think it would be necessary to check whole hierachies of elements as to whether they contained any non-whitespace before outputing the tree – John Rees Nov 15 '08 at 3:40
Nice example, but if you change the Unstyled element to an h1 you'll see that the red background is the whole height of the h1 element. Seems like it can't decide whether it's rendering the h1 or the previous element... try to minimise and maximise the browser to see it get even more confused! – John Rees Nov 15 '08 at 3:51
vote up 0 vote down

Try putting a non-breaking space in your empty paragraphs...

<p style='color:red'>& nbsp;</p>

Except no space after the ampersand...

link|flag
that will make it draw an "empty" red box - he said the desired behaviour was that of Firefox which is that nothing get drawn at all. – nickf Nov 14 '08 at 6:02
vote up 1 vote down

Add a doctype to the top of your HTML file.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">

That will force IE6 to switch form quirks to standards mode. This brings a lot of tother advantages, like a correct box model, so you should be doing it anyway.

link|flag
I omitted the doctype from the question as I didn't want to clutter the example, but I guess that back-fired! Sorry. I have actually tried it both with strict.dtd and xhtml1-transitional.dtd, and the behaviour is unchanged. – John Rees Nov 17 '08 at 0:41
vote up 0 vote down

One strange workaround I found was to add position:relative to the potentially empty paragraphs like this:

<p style='background-color:red;position:relative'></p>
<p>Unstyled background fine because previous element is 'relative'</p>
link|flag

Your Answer

Get an OpenID
or

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