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
There are two separate declaration with same properties. Is it possible to combine them?
CURRENT:
/** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */pre {
font-family: monospace, monospace; /* 1 */font-size:1em; /* 2 */
}
/** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */code,kbd,samp {
font-family: monospace, monospace; /* 1 */font-size:1em; /* 2 */
}
PROPOSED:
/** * 1. Correct the inheritance and scaling of font size in all browsers. * 2. Correct the odd `em` font sizing in all browsers. */pre,code,kbd,samp {
font-family: monospace, monospace; /* 1 */font-size:1em; /* 2 */
}
The text was updated successfully, but these errors were encountered:
There are two separate declaration with same properties. Is it possible to combine them?
CURRENT:
PROPOSED:
The text was updated successfully, but these errors were encountered: