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
{{ message }}
This repository has been archived by the owner on Jul 11, 2020. It is now read-only.
When given a DOM or URL that corresponds to a stylesheet, for this page only create a "compiled" set of styles with only the necessary styles in it. For example:
Given the mark up:
<div><h1>Yay!</h1></div>
The following styles:
div { color: red; }
h1 { color: black; }
could be "compiled" to:
h1 { color: black; }
because all uses of the div { color: red; } rule are overridden.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When given a DOM or URL that corresponds to a stylesheet, for this page only create a "compiled" set of styles with only the necessary styles in it. For example:
Given the mark up:
The following styles:
could be "compiled" to:
because all uses of the div { color: red; } rule are overridden.
The text was updated successfully, but these errors were encountered: