IE CSS Bug - How do I maintain a position:absolute when dynamic javascript content on the page changes

后端 未结 3 869
野趣味
野趣味 2021-01-15 03:23

I have a page where there is a column and a content div, somewhat like this:

blahblahblah
3条回答
  •  天涯浪人
    2021-01-15 03:41

    If you are worried about getting a flicker from showing and hiding divCol you can ajust another css property and it will have the same effect e.g.

    var divCol = document.getElementById('column');
    divCol.style.zoom = '1';
    divCol.style.zoom = '';
    

提交回复
热议问题