PHP Classes

File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/addons/_clearfix.scss

Recommend this page to a friend!
  Classes of fathurrahman   mnTemplate   public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/addons/_clearfix.scss   Download  
File: public/asset/vendor/select2/docs/themes/learn2/scss/vendor/bourbon/addons/_clearfix.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: mnTemplate
Route HTTP requests to callback functions
Author: By
Last change:
Date: 1 year ago
Size: 515 bytes
 

Contents

Class file image Download
// Modern micro clearfix provides an easy way to contain floats without adding additional markup. // // Example usage: // // // Contain all floats within .wrapper // .wrapper { // @include clearfix; // .content, // .sidebar { // float : left; // } // } @mixin clearfix { &:after { content:""; display:table; clear:both; } } // Acknowledgements // Beat *that* clearfix: [Thierry Koblentz](http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php)