Last active
July 26, 2019 14:22
-
-
Save FilipeFilpe/7c94f1cce5cfa95037ab3fdf477a82f3 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
/* Aqui podemos ver o resultado gerado no CSS */ | |
div { | |
color: red; } | |
div p { | |
margin: 0; } | |
div a { | |
text-decoration: none; } | |
div ul { | |
list-style: none; } | |
div ul li { | |
color: blue; } |
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
/* Código .sass */ | |
div | |
color: red | |
p | |
margin: 0 | |
a | |
text-decoration: none | |
ul | |
list-style: none | |
li | |
color: blue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment