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 don't know if it is a bug or that the calc function is just not supported yet. But the calcfunction is not being parsed, if it is used, the whole rule set is ignored. It looks like it is the only function which is not working since functions like linear-gradient do work correct.
So this whole ruleset will be ignored. .background2 { width: calc(100% - 100px); background: linear-gradient(red,yellow,blue); }
And this one will work. .background2 { background: linear-gradient(red,yellow,blue); }
Regards,
Nico
The text was updated successfully, but these errors were encountered:
Unfortunately, calc() is not supported yet and for the first look, it will require quite significant modifications in the value processing, since it can actually produce different value types (lengths, angles, integers, etc.) The filter: property would be probably easier to implement; however it seems to be quite an experimental technology at the moment.
Hello,
I don't know if it is a bug or that the
calc
function is just not supported yet. But thecalc
function is not being parsed, if it is used, the whole rule set is ignored. It looks like it is the only function which is not working since functions likelinear-gradient
do work correct.So this whole ruleset will be ignored.
.background2 { width: calc(100% - 100px); background: linear-gradient(red,yellow,blue); }
And this one will work.
.background2 { background: linear-gradient(red,yellow,blue); }
Regards,
Nico
The text was updated successfully, but these errors were encountered: