CSS to make an empty cell's border appear? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:02:27Zhttp://stackoverflow.com/feeds/question/57002http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear4CSS to make an empty cell's border appear?Allain Lalonde2008-09-11T16:08:06Z2009-07-29T11:35:38Z
<p>What CSS should I use to make a cell's border appear even if the cell is empty?</p>
<p>IE 7 specifically.</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/57006#570065Answer by Grant for CSS to make an empty cell's border appear?Grant2008-09-11T16:09:23Z2008-09-11T16:23:25Z<p>If I recall, the cell dosn't exist in some IE's unless it's filled with something...</p>
<p>If you can put a &nbsp; (non breaking space) to fill the void, that will usually work. Or do you require a pure css solution?</p>
<p>Apparently, IE8 shows the cells by default, and you have to hide it with <code>empty-cells:hide</code> But it doesn't work at all in IE7 (which hides by default)</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/57011#570111Answer by D4V360 for CSS to make an empty cell's border appear?D4V3602008-09-11T16:10:41Z2008-09-11T16:10:41Z<p>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...</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/57023#570232Answer by Allain Lalonde for CSS to make an empty cell's border appear?Allain Lalonde2008-09-11T16:16:51Z2008-09-11T16:16:51Z<p>I just found the following. It's standards compliant but it doesn't work in IE. sigh.</p>
<pre><code>empty-cells: show
</code></pre>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/57026#570263Answer by Bobby Jack for CSS to make an empty cell's border appear?Bobby Jack2008-09-11T16:18:15Z2008-09-11T16:18:15Z<p>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.</p>
<p>Can we have a bit more detail?</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/57071#570713Answer by rpetrich for CSS to make an empty cell's border appear?rpetrich2008-09-11T16:44:26Z2008-09-15T06:55:29Z<p>If you set the <code>border-collapse</code> property to <code>collapse</code>, IE7 will show empty cells. It also collapses the borders though so this might not be 100% what you want</p>
<p>CSS:</p>
<pre><code>td {
border: 1px solid red;
}
table {
border-collapse: collapse;
}
</code></pre>
<p>Example HTML Document:</p>
<pre><code><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>
</code></pre>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/482942#4829420Answer by lajapathy for CSS to make an empty cell's border appear?lajapathy2009-01-27T10:46:14Z2009-01-27T10:46:14Z<p>hi,allain</p>
<p>empty cells is nicely working in IE but not working in Firefox</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/532737#5327370Answer by Gabe for CSS to make an empty cell's border appear?Gabe2009-02-10T15:15:28Z2009-02-10T15:15:28Z<p>"IE" isn't a useful term in this context anymore now that IE8 is out.</p>
<p>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.</p>
<p>As far as I know, every other browser has correctly supported this for several years (I know it was added in Firefox 2).</p>
http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/1199608#11996081Answer by Rasmus for CSS to make an empty cell's border appear?Rasmus2009-07-29T11:35:38Z2009-07-29T11:35:38Z<p>Another way of making sure there is data in all cells: </p>
<pre><code> $(document).ready(function() {
$("td:empty").html("&nbsp ;");
});
</code></pre>