user3133542
user3133542

Reputation: 1715

IE11: very poor perfomance in rendering tables - any solutions?

My Dom-structure looks like this:

enter image description here

On my html-webpage there are 226 divs with corresponding ids from "content-box1" to "content_box226". Each of these contentboxes contain a svg-picture and a html-table-with css-colouring. Only one content-box is shown at the same time. The navigation through the content-boxes is managed by a html-selectbox and jQuery.

My problem is that this webpage is lacking in IE11 like hell. Why? Is InterExplorer11 rendering all svgs and tables of all content-boxes despite of the fact that only one content-box is shown? How i can avoid this behavior?

Upvotes: 1

Views: 56

Answers (1)

quemeful
quemeful

Reputation: 9858

For CSS, performance wise

visiblilty: hidden;

is better than

display: none;

Upvotes: 1

Related Questions