Last active
April 19, 2018 11:48
-
-
Save kogai/61535e9f36764ec0619ecec4e23b7dc4 to your computer and use it in GitHub Desktop.
Is it possible to determine whether arbitarly properties of css definition is useless for rendering
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .a { color: red }; // Useless | |
| .a .b { color: blue }; | |
| .a { color: black }; | |
| .b { color: black }; // ? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment