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
closing as duplicate of #315
Some work started in a new branch.
currently, aspect-ratio: var(--x) / 3; is ignored as we don't know the value of --x,
and aspect-ratio: var(--x, 4) / 3; should validate. (not deployed yet)
/*
It issues this error message when a CSS variable is used on either side of the fraction:
.aspect-ratio / is not a aspect-ratio value : / 3
*/
.aspect-ratio {
aspect-ratio: var(--x) / 3;
}
/* with fallback value in variable: */
.aspect-ratio {
aspect-ratio: var(--x, 2) / 3;
}
The text was updated successfully, but these errors were encountered: