Skip to content

Instantly share code, notes, and snippets.

@piyonishi
Last active February 27, 2017 08:26
Show Gist options
  • Save piyonishi/91e1cc296b73f906c25e02e1a0d3f8e2 to your computer and use it in GitHub Desktop.
Save piyonishi/91e1cc296b73f906c25e02e1a0d3f8e2 to your computer and use it in GitHub Desktop.
.posts {
list-style: none;
margin: 0;
padding: 0;
}
/* 上書きする例(bad) */
.post {
border-bottom: 1px solid #eee;
margin-bottom: .5rem;
padding-bottom: .5rem;
&:last-child {
border-bottom: 0;
margin-bottom: 0;
padding-bottom: 0;
}
}
/* 上書きしない例(good) */
.post:not(:last-of-type) {
border-bottom: 1px solid #eee;
margin-bottom: .5rem;
padding-bottom: .5rem;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment