vote up 0 vote down star

I've found a strange problem with Internet Explorer related to table spacing and cannot find a way to work around it. An empty table results in a single pixel white space with Internet Explorer (6 and 7, 8 not yet tested), while all other browsers ignore the empty table. Here's a picture of the problem:

alt text

And here is the minimum HTML code to reproduce the issue (please note that there are more margin/padding css attributes and table attributes specified than really needed, I just tested if this fixes IE's behavior):

<!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">
<body>

<div style="width: 200px; border: 1px black solid">
    <table border="0" cellspacing="0" cellpadding="0" 
    	style="margin: 0pt; padding: 0pt; border-collapse: collapse;">
    	<tr>
    		<td style="padding: 0; margin: 0">
    		</td>
    	</tr>
    </table>

    <div style="background: red">
    	Test
    </div>
</div>

</body>
</html>

I'm not using an empty table as specified in the example above, but this was the minimum code that displays this behavior. Any ideas on how to fix this and remove the white space with IE?

flag
My first thought is that a border of 1px might be too small. Personally I think borders of 1(no units) are the smallest that look good. Does changing the border weight fix the problem? – TahoeWolverine Jul 21 at 12:15
Also, does putting the 2nd <div> inside the <td> table cell fix the problem? – TahoeWolverine Jul 21 at 12:17
TahoeWolverine: the border and div was just for demonstration purposes to show the white space and is not used on the actual page I have the problem on. – Dennis G. Jul 21 at 12:24
1  
here is a link of some IE bugs. Don't know whether this is useful or not. Please check this. positioniseverything.net/explorer.html – adamantium Jul 21 at 12:27
FYI: It works well on IE8. Can you add another component on top of the table, give the table a background color and verify whether that white space is inside the table or around it? – Narayan Raman Jul 21 at 12:59

2 Answers

vote up 1 vote down

I suggest you remove styling from table and only apply it to cells (not even rows). Styles on table and tr tags can sometimes produce side effects.

link|flag
vote up 1 vote down

you can try to have a display:none on the table if it is empty, and do it in javascript.

link|flag
The table is not really empty on my actual page (but has the exact same problem), so display: none won't work for me. – Dennis G. Jul 21 at 12:22

Your Answer

Get an OpenID
or

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