Catpow SCSS

background image

clear_fix

フロートレイアウトのコンテナのafter擬似要素に回り込み解除のスタイルを適用します。
scss
@import 'catpow';

@include clear_fix();
css
:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}