Last active
August 29, 2015 14:02
-
-
Save yuricamara/5db61f86c9d9bb4b3087 to your computer and use it in GitHub Desktop.
Seletores irmãos
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
/** | |
* Seletores irmãos em CSS | |
*/ | |
h1:hover + h2{ | |
color:red; | |
} /* funciona */ | |
h1:hover ~ h2{ | |
font-size:14px; | |
} /* funciona */ | |
h2 + h1{ | |
margin-top: 100px; | |
} /* funcionaria para um h1 que viesse depois de h2 */ | |
h2:hover + h1{ | |
color:blue; | |
} /* não funciona como esperado */ | |
h2 ~ h1{ | |
font-style: italic | |
} /* funcionaria para um h1 que viesse depois de h2 */ | |
h2:hover ~ h1{ | |
font-size:14px; | |
} /* não funciona como esperado */ |
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
<!-- Elementos irmãos --> | |
<h1>Primeiro irmão </h1> | |
<h2>Segundo irmão </h2> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment