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
Everything works fine in Chrome. However, there is a problem with browser support for the "react-transform-element" class in the firefox browser. Div has width: 20k pixels, height: 20k pixels. But firefox gives a maximum width of 1280px.
I think the problem is caused by the css elements below. width: fit-content; height: fit-content;
I found a solution like this. display: table;
or width: -moz-max-content;
or .react-transform-element{ /* Browser Support*/ width: -moz-max-content; }
Has anyone experienced this problem like me?
The text was updated successfully, but these errors were encountered:
Everything works fine in Chrome. However, there is a problem with browser support for the "react-transform-element" class in the firefox browser. Div has width: 20k pixels, height: 20k pixels. But firefox gives a maximum width of 1280px.
I think the problem is caused by the css elements below.
width: fit-content; height: fit-content;
I found a solution like this.
display: table;
or
width: -moz-max-content;
or
.react-transform-element{ /* Browser Support*/ width: -moz-max-content; }
Has anyone experienced this problem like me?
The text was updated successfully, but these errors were encountered: