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
renders the first div correctly at 60px height, but the height for the second one is ignored and the sandbox log shows Found whitespace where one of a number, a percentage, a pixel value, an em value, an ex value, a pica value, a millimeter value, a centimeter value, an inch value, a point value, an angle value, a time value, a freq value, a string, an identifier, a URI, a hex color, or function was expected at line 7. Skipping declaration.
If you use calc(30px+30px) (without whitespace around the "+") you get the error: (null#inline_style_1) Value for height must be an identifier, length, or percentage at line 7. Skipping declaration.
Margings, paddings and border widths sized using calc() will all render incorrectly as the value is skipped entirely.
Borders sized with calc() are not rendered at all.
The text was updated successfully, but these errors were encountered:
CSS calc() does not appear to be supported, causing elements styled with it to not render correctly.
Example, in the sandbox:
renders the first div correctly at 60px height, but the height for the second one is ignored and the sandbox log shows
Found whitespace where one of a number, a percentage, a pixel value, an em value, an ex value, a pica value, a millimeter value, a centimeter value, an inch value, a point value, an angle value, a time value, a freq value, a string, an identifier, a URI, a hex color, or function was expected at line 7. Skipping declaration.
If you use calc(30px+30px) (without whitespace around the "+") you get the error:
(null#inline_style_1) Value for height must be an identifier, length, or percentage at line 7. Skipping declaration.
Margings, paddings and border widths sized using calc() will all render incorrectly as the value is skipped entirely.
Borders sized with calc() are not rendered at all.
The text was updated successfully, but these errors were encountered: