Viewing File: /home/maglabs/greentech/wp-content/themes/porto/scss/theme/vendor/bourbon/addons/_clearfix.scss
// 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
// Micro clearfix: [Nicolas Gallagher](http://nicolasgallagher.com/micro-clearfix-hack/)
Back to Directory
File Manager