The lobotomized owl selector

The lobotomized owl selector has been around for long, but still useful.

li + li {
  border-bottom: 1px solid #ccc;
} 

// Instead of 

li {
  border-bottom: 1px solid #ccc;
}

li:last-of-type {
  border-bottom: none;
}