Sha256: 009ddea93b97d2b4c0020cb9942e1e91b46daf52fa8330dd4f9ba18f44e80276

Contents?: true

Size: 292 Bytes

Versions: 4

Compression:

Stored size: 292 Bytes

Contents

// The clearfix mixin provides an easy way to contain floats
//
// Example usage:
// .wrapper {
//   @include clearfix;
// }

@mixin clearfix {
  &::after {
    clear: both;
    content: "";
    display: table;
  }
}

// Acknowledgements:
// Thierry Koblentz, cssmojo
// http://goo.gl/AQWvyH

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
frozen-0.0.1 dummy/assets/stylesheets/bourbon/addons/_clearfix.scss
bourbon-4.1.1 app/assets/stylesheets/addons/_clearfix.scss
bourbon-4.1.0 app/assets/stylesheets/addons/_clearfix.scss
bourbon-4.1.0.pre app/assets/stylesheets/addons/_clearfix.scss