I’ve been working on a page where we hide a TR (table row) using display:none and later need to show it via display:table-row. However, IE7 ignores table-row and leaves the TR hidden. If I simply say display:block, all the cells are out of line with the columns. Any workarounds for this limitation?
I’ve been working on a page where we hide a TR (table row) using
Share
You should try
visibility:hiddenandvisibility:visibleto toggle visibility of the element.Check this example at http://jsfiddle.net/JauH4/4/