CSS to make an empty cell's border appear? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:02:27Z http://stackoverflow.com/feeds/question/57002 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear 4 CSS to make an empty cell's border appear? Allain Lalonde 2008-09-11T16:08:06Z 2009-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#57006 5 Answer by Grant for CSS to make an empty cell's border appear? Grant 2008-09-11T16:09:23Z 2008-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 &amp;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#57011 1 Answer by D4V360 for CSS to make an empty cell's border appear? D4V360 2008-09-11T16:10:41Z 2008-09-11T16:10:41Z <p>I guess this can't be done with CSS; You need to put a &amp;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#57023 2 Answer by Allain Lalonde for CSS to make an empty cell's border appear? Allain Lalonde 2008-09-11T16:16:51Z 2008-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#57026 3 Answer by Bobby Jack for CSS to make an empty cell's border appear? Bobby Jack 2008-09-11T16:18:15Z 2008-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 - &amp;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#57071 3 Answer by rpetrich for CSS to make an empty cell's border appear? rpetrich 2008-09-11T16:44:26Z 2008-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>&lt;html&gt; &lt;head&gt; &lt;title&gt;Border-collapse Test&lt;/title&gt; &lt;style type="text/css"&gt; td { border: 1px solid red; } table { border-collapse: collapse; } &lt;/style&gt; &lt;/head&gt; &lt;/body&gt; &lt;table&gt; &lt;tr&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;test&lt;/td&gt;&lt;td&gt;test&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;test&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;test&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;test&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;test&lt;/td&gt;&lt;/tr&gt; &lt;tr&gt;&lt;td&gt;test&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td /&gt;&lt;/tr&gt; &lt;/table&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/57002/css-to-make-an-empty-cells-border-appear/482942#482942 0 Answer by lajapathy for CSS to make an empty cell's border appear? lajapathy 2009-01-27T10:46:14Z 2009-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#532737 0 Answer by Gabe for CSS to make an empty cell's border appear? Gabe 2009-02-10T15:15:28Z 2009-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#1199608 1 Answer by Rasmus for CSS to make an empty cell's border appear? Rasmus 2009-07-29T11:35:38Z 2009-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("&amp;nbsp ;"); }); </code></pre>