Last active
January 22, 2020 03:57
-
-
Save sno2/43f41dc91fad78ecc75811367857c5c6 to your computer and use it in GitHub Desktop.
This file contains 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
/* Sass Code */ | |
html { | |
width: 100%; | |
body { | |
width: 50% | |
/* This would only be styled if body was in html */ | |
} | |
} | |
/* Compiled CSS Code */ | |
html { | |
width: 100%; | |
} | |
html body { | |
width: 50%; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment