Last active
February 27, 2017 08:26
-
-
Save piyonishi/91e1cc296b73f906c25e02e1a0d3f8e2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.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