IE 10 elements with relative position disappearing after scrolling in parent element

▼魔方 西西 提交于 2019-12-03 17:30:13

This is a known and reported bug in IE10. However, MS seems unwilling to do anything about it:

https://connect.microsoft.com/IE/feedback/details/817099/ie-10-elements-with-relative-position-disappearing-when-scrolling-in-parent-element-on-windows-7

A hack seems to force IE to use hardware acceleration (or otherwise forcing a redraw by toggling display:none). This worked for me:

-ms-transform: scale(1);
transform: scale(1);

Hope that will work for you!

Is it actually the position:relative that causes it to disappear? What happens when you change

position:relative

back to

position: static

As a side-thought, it might be a low memory issue when you said re-sizing IE 10 window will trigger correct display of cell contents. You might try restarting your computer or viewing it in IE 10 on someone else's computer.

We had similar issue in our project, frontend team solved this with:

opacity: 0.99;

So simple, check this out!

http://jsfiddle.net/86BaU/106/

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!