Skip to content

Instantly share code, notes, and snippets.

@yuricamara
Last active August 29, 2015 14:02
Show Gist options
  • Save yuricamara/5db61f86c9d9bb4b3087 to your computer and use it in GitHub Desktop.
Save yuricamara/5db61f86c9d9bb4b3087 to your computer and use it in GitHub Desktop.
Seletores irmãos
/**
* 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 */
<!-- 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