vote up 7 vote down star
1

I'd like to show a div that has a background-color with the height and width set to 100% but no content. Is it possible to do that without putting a   inside?

Edit: Thanks to Mark Biek for pointing out that empty div with width and height styles shows how I'd expect. My div is in a table cell, where it does not show.

<table style="width:100%">
<tr>
<th>Header</th>
<td><div id="foo"></div></td>
</tr>
</table>
flag

8 Answers

vote up 3 vote down check

This seems to work in Firefox, Safari, IE6, & IE7.

<html>
    <head>
        <style>
            #foo{
                background:  #ff0000;
                width:  100%;
                height:  100%;
                border:  2px dashed black;
            }
        </style>
    </head>
    <body onload="">
        <div id="foo"></div>
    </body>
</html>

3 Browser example

link|flag
vote up 3 vote down

Hmmm... I'm not sure what exactly the specs say, but I know that while empty inline-elements (e.g. span) are valid, empty block-elements (e.g. p or div) get "cleaned up" by html-tidy.

Thus I'd say it's safer to stick to the &nbsp; as it does no harm in your case. I'd also add a comment like "<!-- background container -->" or something like that. So everyone who's going to change your html knows that the div has a special meaning even though it's empty.

link|flag
vote up 1 vote down

IMHO you should include the nbsp for otherwise empty DIVs if you want them to actually render into something.

On a "theoretical" note .. the browser is not supposed to show anything if there is no content. The entire point of nbsp is to indicate empty space. This is both common sense and (I believe) the standard.

On a practical side .. are you have three choices. One is to leave nbsp off, knowing that you will get unpredictable results. This is likely the easiest to code. Another is to always include nbsp, either by always putting nbsp at the end of the div or testing for empty and adding nbsp if it is empty. The third it to test for the browser and insert nbsp when needed.

link|flag
Actually, the point of   is not to represent empty space, it is to create a non-breaking space, hence the name. So if you have "some text with a non-breaking space", the browser would try not to line-break between "a" and "non-breaking". – Chris Marasti-Georg Oct 13 '08 at 16:26
Fair enough; I appreciate the clarification. Does this error impact the logic behind my recommendation? – tomjedrz Oct 13 '08 at 17:22
vote up 0 vote down

I think it depends on the browser (IE/Gecko engine/Webkit engine) and on the mode (Standards mode, Quirks mode). I had some divs appearing in FFox/Standards mode and not appearing in IE6/7.

You probably can do it in a cross browser way with only css, but you'll probably resort to some css hacks.

link|flag
vote up 0 vote down

From experience, IE won't render borders of empty elements (at least empty <td> elements)

link|flag
vote up 0 vote down

perhaps

#foo {empty-cells: show;}

although that may be only for <td>

link|flag
that's for everyone but IE – boris callens Nov 24 '08 at 14:05
vote up 0 vote down

You should include &nbsp; at all times.

link|flag
vote up -2 vote down

It can't work. How would you properly define the size of an empty element?

link|flag

Your Answer

Get an OpenID
or

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