1.0.1 • Published 10 years ago

aleut.tools.clearfix v1.0.1

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
10 years ago

Clearfix

The aleutcss clearfix module contains a useful mixin for adding clearfix to your classes.

Install using npm:

$ npm install --save-dev aleut.tools-clearfix

Usage

Basic usage of the mixins in a SCSS-file:

.foo {
	@include clearfix;
}

This yields:

.foo::after {
  content: "";
  display: table;
  clear: both;
}