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 discovered the following issue with CSS calc and white spaces which breaks your styles in some browsers (e.g. Chrome) while others will work fine (e.g. Firefox):
Pure CSS width: calc(100% / 3 - (3 - 1) * 1em / 3);
will turn into width: calc(100% / 3 -(3 - 1) * 1em / 3);
when compressed.
Note the missing white space in front of the opening parenthese. I'd appreciate a fix for that :)
The text was updated successfully, but these errors were encountered:
I discovered the following issue with CSS calc and white spaces which breaks your styles in some browsers (e.g. Chrome) while others will work fine (e.g. Firefox):
Pure CSS
width: calc(100% / 3 - (3 - 1) * 1em / 3);
will turn into
width: calc(100% / 3 -(3 - 1) * 1em / 3);
when compressed.
Note the missing white space in front of the opening parenthese. I'd appreciate a fix for that :)
The text was updated successfully, but these errors were encountered: