up vote 19 down vote favorite
5
share [g+] share [fb]

What CSS should I use to make a cell's border appear even if the cell is empty?

IE 7 specifically.

link|improve this question

I'm having this issue in IE6!   so far :( – Chalkey Dec 9 '09 at 16:12
feedback

15 Answers

up vote 16 down vote accepted

If I recall, the cell dosn't exist in some IE's unless it's filled with something...

If you can put a   (non breaking space) to fill the void, that will usually work. Or do you require a pure css solution?

Apparently, IE8 shows the cells by default, and you have to hide it with empty-cells:hide But it doesn't work at all in IE7 (which hides by default)

link|improve this answer
1  
Pure CSS would be nice. I already have nbsps in there, but it feels dirty. :) – Allain Lalonde Sep 11 '08 at 16:13
2  
as far as I know, that is the only solution, it's what we do. – Juan Mendes Dec 16 '09 at 19:04
2  
I would not do that. Add a <span style='width:0px;'></span> instead. Putting &nbsp; will cause a problem with Firefox when zoomed in. – wbkang Jul 15 '10 at 6:10
feedback

Another way of making sure there is data in all cells:

   $(document).ready(function() {
      $("td:empty").html("&nbsp;");
    });
link|improve this answer
2  
This works well since you can have it in a separate "ie.js" file for inclusion via conditional comments. In my case I didn't want to change my backend for an IE display bug. – Mathew Byrne Jun 4 '10 at 6:55
Thanks, you saved me couple hundred conditional statements right there :) – Toms Mikoss Dec 23 '10 at 15:30
2  
&nbsp; not &nbsp ; – Lightness Races in Orbit May 27 '11 at 20:00
Right you are Tomalak – Rasmus May 29 '11 at 20:39
Love this solution! – NexusRex Jul 14 '11 at 19:16
feedback

If you set the border-collapse property to collapse, IE7 will show empty cells. It also collapses the borders though so this might not be 100% what you want

CSS:

td { 
 border: 1px solid red; 
}
table {
 border-collapse: collapse;
}

Example HTML Document:

<html>
<head>
<title>Border-collapse Test</title>
<style type="text/css">
td { 
 border: 1px solid red; 
}
table {
 border-collapse: collapse;
}
</style>
</head>
</body>
<table>
<tr><td></td><td>test</td><td>test</td></tr>
<tr><td>test</td><td></td><td>test</td></tr>
<tr><td>test</td><td></td><td>test</td></tr>
<tr><td>test</td><td></td><td /></tr>
</table>
</body>
</html>
link|improve this answer
I'm not sure this should be the accepted answer since, as the poster points out, it has other side-effects, which may well be undesirable. It's also not true, at least as far as I can verify. Can you post a link to a working example? – Bobby Jack Sep 14 '08 at 12:54
I've added an example HTML document that shows the border showing even on blank cells. Tested in IE7, fx3 and the latest safari. The main side-effect of border-collapse is you can't have double borders that look decent. Also, missing cells can't be styled no matter how hard you try – rpetrich Sep 15 '08 at 7:09
Works in IE 6 too. – Paul D. Waite Jun 7 '11 at 14:29
feedback

Ideally, you shouldn't have any empty cells in a table. Either you have a table of data, and there's no data in that specific cell (which you should indicate with "-", or "n/a/", or something equally appropriate, or - if you must - &nbsp;, as suggested), or you have a cell that needs to span a column or row, or you're trying to achieve some layout with a table that you should be using CSS for.

Can we have a bit more detail?

link|improve this answer
I like this. Clarity increases. – Allain Lalonde Sep 11 '08 at 16:38
feedback

I just found the following. It's standards compliant but it doesn't work in IE. sigh.

empty-cells: show
link|improve this answer
3  
It does work in IE8 though, so just give it about a decade, and you're good to go. – Grant Sep 11 '08 at 16:19
Amusingly it also works for an standard html <table> in IE6 but not an ASP.NET table :) – Rich Andrews Oct 15 '09 at 9:17
feedback

The question asked for a CSS solution, but on the off-chance an HTML solution will do, here is one:

Try adding these two attributes to the table element: frame="box" rules="all" like this:

<table border="1" cellspacing="0" frame="box" rules="all">
link|improve this answer
feedback

I happened across this question and haven't seen any answers that really addressed the issue.

The problem results because IE7 does not see any internal content for the cell; in programming terms the cell is resulting as a null and like most things, you cannot border a null or perform any action on it. The browser needs an element/object that has a layout, in order to apply a border/layout.

Even empty <div></div> or <span></span> do not contain content, thus there is nothing to render, resulting in that null case again.

However, you can trick the browser into thinking the cell has content, by giving the empty div/span layout properties. The easiest way is to apply the CSS style zoom:1.

<table>
   <tr><td>Foo</td>
       <td><span style="zoom:1;"></span></td></tr>
</table>

This workaround is better than using a &nbsp;, since it doesn't unnecessarily mess up screen readers, and isn't misrepresenting the value of the cell. In newer browser you can use the empty-cell:<show|hide> alternative.


Note: in lieu of Tomalak's comment, it should be understood that hasLayout has nothing to do with null, it was merely a comparison of how the browser interacts and renders hasLayout similarly to how a database or programming language interacts with nulls. It is a strech, but I thought it might be easier to understand for those programmers turned web designers.

link|improve this answer
+1 Interesting. Though I'm not entirely convinced by your null analogy. – Lightness Races in Orbit May 27 '11 at 20:02
@Tomalak: It was the closest comparison I could make hasLayout to. If no elements/objects have layout then the browser (IE) treats them differently and doesn't apply a lot of visual settings to them and their parents when rendering. While isn't synonymous, I used the comparison loosely because Stack Overflow was conceptually a forum for programming Q&A, not necessarily web-design debugging - it's since grown :) you have every right not to be convinced! – vol7ron May 27 '11 at 20:19
feedback

I guess this can't be done with CSS; You need to put a &nbsp; in every empty cell for the border to show in IE...

link|improve this answer
feedback

empty cells is nicely working in IE but not working in Firefox

link|improve this answer
feedback

"IE" isn't a useful term in this context anymore now that IE8 is out.

IE7 always does "empty-cells:show" (or so I'm told ... Vista). IE8 in any of its "Quirks" or "IE7 Standards" modes always does "empty-cells:hide". IE8 in "Standards" mode defaults to "empty-cells:show" and supports the attribute via CSS.

As far as I know, every other browser has correctly supported this for several years (I know it was added in Firefox 2).

link|improve this answer
feedback

I'm taking this from another website but:

.sampletable {
border-collapse: collapse;}

.sampleTD {
empty-cells: show;}

Use for the CSS for the table and TD element respectively.

link|improve this answer
feedback

empty-cell only fixed Firefox (YES I really did have this issue in Firefox) IE 7 & 8 were still problematic..

This worked for me in both Firefox 3.6.x, IE 7 & 8, Chrome, and Safari:

==============================

table {
*border-collapse: collapse;}

.sampleTD {
empty-cells: show;}

==============================

Had to use the * to make sure the table style was only applied to the IE browser.

link|improve this answer
feedback

the solution from wbkang works great for me. just add <span></span> inside the cell.

link|improve this answer
feedback

This question's old, but still a top result in Google, so I'll add what I've found:

Simply adding border-collapse: collapse to the table style fixed this problem for me in IE7 (and didn't affect the way they're displayed in FF, Chrome, etc).

Best to avoid the extraneous code of adding an &nbsp; or other spacing element when you can fix with CSS.

link|improve this answer
feedback

Try this if you can't use non-breakable space:

var tn = document.createTextNode('\ ');
yourContainer.appendChild(ta);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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