Skip to content

Combinators

Jorge Fco edited this page Jun 14, 2018 · 4 revisions
  • Descendant
.header{
  .logo{
    color: red;
  }
}
  • Child
.header{
  > p{
      color: blue;
    }
}
  • Adjacent Sibling
  • General Sibling
Clone this wiki locally