Created
March 11, 2017 09:19
-
-
Save olarclara/625a9e718aaf0dc8bf1a29c36a3caf15 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
/* tag html */ | |
body { | |
background-color: blue; | |
} | |
/* acessando via id */ | |
#unique { | |
font-size: 24pt; | |
} | |
/* acessando via classes */ | |
.bold { | |
font-weight: bold; | |
} | |
/* seletores aninhados */ | |
div p { | |
color: #eeeeee; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment