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?
| |||
feedback
|
|
You should try | |||||||||||||
feedback
|
|
Just set display to "" when you want to show it again. Edit: Here's a fiddle, observe how the display property is removed when we don't need it. Try it with IE 7. | |||||||
feedback
|