You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have validated any HTML to avoid common problems
Describe the issue
I am having a problem when the user resizes or maximizes the window, IE freezes for several seconds.
The same thing happens to me also in the test page: https://coliff.github.io/bootstrap-ie11/tests/
What version of Bootstrap are you using?
v5.3.2
The text was updated successfully, but these errors were encountered:
I can reproduce this issue (with Edge running in IE mode on Windows 11) which I think is an unfortunate side effect from using the ie11CustomProperties polyfill.
You could consider not using that polyfill and instead using standard CSS for Internet Explorer. For example set:
body {
font-family: system-ui, -apple-system,"Segoe UI", Roboto,"Helvetica Neue","Noto Sans","Liberation Sans", Arial, sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
font-size:1rem;
font-weight:400;
line-height:1.5;
color:#212529;
background-color:#fff;
}
so that the polyfill doesn't need to calculate everything from:
body {
font-family:var(--bs-body-font-family);
font-size:var(--bs-body-font-size);
font-weight:var(--bs-body-font-weight);
line-height:var(--bs-body-line-height);
color:var(--bs-body-color);
background-color:var(--bs-body-bg);
}
Prerequisites
Describe the issue
I am having a problem when the user resizes or maximizes the window, IE freezes for several seconds.
The same thing happens to me also in the test page: https://coliff.github.io/bootstrap-ie11/tests/
What version of Bootstrap are you using?
v5.3.2
The text was updated successfully, but these errors were encountered: