IE

Force IE rerender

Posted by Yuankun Li on 2019-04-24

The height of same row is different of grid

compare
mark
html

Fix by javascript code

迫使IE重新render

1
2
3
4
5
if (ISIE) { //judge whether it is IE
window.setTimeout(function() {
el.style.zoom = el.style.zoom == '1' ? '100%' : '1';
}, 100);
}


show git comment