Spacing The Bottom of Modules

この記事。

http://coliss.com/articles/build-websites/operation/css/css-remove-bottom-margins-by-css-tricks.html
http://css-tricks.com/spacing-the-bottom-of-modules/

.module > *:last-child,
.module > *:last-child > *:last-child,
.module > *:last-child > *:last-child > *:last-child {
    margin: 0;
}

class名がmoduleになってるけど、例えばrbm(remove bottom margins)とかにしておいて、clearfixみたいに使い回すと良いんじゃないかと思った。

.rmb > *:last-child,
.rmb > *:last-child > *:last-child,
.rmb > *:last-child > *:last-child > *:last-child {
    margin: 0;
}

  retrun to homepage

Posted on under Coding