| Issue 9: | Table borders glitch in IE8 |
‹ Prev
9 of 9
|
| 1 person starred this issue and may be notified of changes. | Back to list |
The table borders sometimes shift by one pixel in IE 8 when scrolling,
resizing, or even simply selecting text from the table. Supposedly it can be
fixed using this script:
table.style.display = 'none'; setTimeout(function(){ table.style.display =
''; }, 10);
|