IE CSS bug: table border showing div with visibility: hidden, position: absolute - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T15:47:32Z http://stackoverflow.com/feeds/question/430485 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute 1 IE CSS bug: table border showing div with visibility: hidden, position: absolute Alessandro Vernet http://stackoverflow.com/users/5295 2009-01-10T03:08:26Z 2010-02-04T16:15:47Z <h2>The issue</h2> <p>I have a <code>&lt;div&gt;</code> on a page which is initially hidden with a <code>visibility: hidden; position: absolute</code>. The issue is that if a <code>&lt;div&gt;</code> hidden this way contains a table which uses <code>border-collapse: collapse</code> and has a border set on it cells, that border still shows "through" the hidden <code>&lt;div&gt;</code> on IE.</p> <p>Try this for yourself by running the code below on IE6 or IE7. You should get a white page, but instead you will see:</p> <p><img src="http://img.skitch.com/20090110-enuxpb5aduqceush46dyuf4wk7.png" alt="alt text" /></p> <h2>Possible workaround</h2> <p>Since this is happening on IE and not on other browsers, I assume that this is an IE bug. One workaround is to add the following code which will override the border:</p> <pre><code>.hide table tr td { border: none; } </code></pre> <p>I am wondering:</p> <ul> <li>Is this a known IE bug?</li> <li>Is there a more elegant solution/workaround?</li> </ul> <h2>The code</h2> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=utf-8"/&gt; &lt;style type="text/css"&gt; /* Style for tables */ .table tr td { border: 1px solid gray; } .table { border-collapse: collapse; } /* Class used to hide a section */ .hide { visibility: hidden; position: absolute; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div class="hide"&gt; &lt;table class="table"&gt; &lt;tr&gt; &lt;td&gt;Gaga&lt;/td&gt; &lt;/tr&gt; &lt;/table&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute/430702#430702 0 Answer by buti-oxa for IE CSS bug: table border showing div with visibility: hidden, position: absolute buti-oxa http://stackoverflow.com/users/2515 2009-01-10T07:24:28Z 2009-01-10T07:24:28Z <p>On your possible workaround: Since you want visibility:hidden and not display:none I assume that it is important that the table remains the same size. I am afraid that setting border to none can change that.</p> <p>If you know you want to see white rectange, it is safer to set border color to white instead. Of course,if you have a background you want to see through the hidden table, it does not work.</p> http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute/680429#680429 1 Answer by jthompson for IE CSS bug: table border showing div with visibility: hidden, position: absolute jthompson http://stackoverflow.com/users/76514 2009-03-25T06:25:00Z 2009-03-25T06:25:00Z <p>If you weren't using absolute positioning, I would assume that keeping the size of the div when hidden remained the same mattered to you. However, since you are using absolute positioning, you can just use</p> <pre><code>display: none; </code></pre> <p>And this will accomplish the same thing (tested in IE7).</p> <p>With visibility: hidden, the element you hide takes up the same screen space as if it were still there. When you use display: none, it's almost as if it was removed from the DOM.</p> <p>The original issue you're seeing could be an IE bug.</p> http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute/1713215#1713215 0 Answer by Alessandro Vernet for IE CSS bug: table border showing div with visibility: hidden, position: absolute Alessandro Vernet http://stackoverflow.com/users/5295 2009-11-11T05:25:17Z 2009-11-11T05:25:17Z <p>The solution I found consists in adding a top/left to move the rendering off-screen, which shields us against IE bugs of this sort. In the above example, this means that you would define the CSS for the <code>hide</code> class as:</p> <pre><code>.hide { visibility: hidden; position: absolute; top: -10000px; left: -10000px; } </code></pre> <p>More on: <a href="http://wiki.orbeon.com/forms/doc/contributor-guide/ie-bugs#TOC-Workaround-for-table-borders-showin" rel="nofollow">Workaround for table borders showing through on IE</a></p> http://stackoverflow.com/questions/430485/ie-css-bug-table-border-showing-div-with-visibility-hidden-position-absolute/2201213#2201213 0 Answer by Rex the Strange for IE CSS bug: table border showing div with visibility: hidden, position: absolute Rex the Strange http://stackoverflow.com/users/266350 2010-02-04T16:15:47Z 2010-02-04T16:15:47Z <p>This is a IE bug. Firefox doesn't recognize "border-collapse" using "border-spacing" instead which does not cause this problem. The solution of using "display:none" works, but there's another possibility. If the visibility property is set using Javascript then the border is hidden as well (as expected).</p>