I am troubleshooting performance issues on IE 11 with an existing HTML page which is quite big (table with a few hundred rows containing links).
I noticed with the F12 UI responsiveness tool that the lagging is caused by many "Layout" events generated as soon as I move the mouse anywhere hover the page and which basically recompute the style of all elements (including the table cells) even if the mouse is on the page's header section.
From the documentation:
•Layout: Changes were made to the DOM that required the size and/or position of all affected elements to be computed.
How can I find the cause of this issue?
I guess there is some :hover
CSS style somewhere that causes this full style recomputing, but how to find out which one?