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
Consider a property --font-size, registered to be of <length> type. What should the computed values of font-size and --font-size be?
--font-size: 10em;
font-size: var(--font-size);
If --font-size is substituted as "10em", then font-size is 10*parent and --font-size is 100*parent. If it is substituted after computation then what value do we use for the em unit?