Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
everest-forms
/
addons
/
StyleCustomizer
/
assets
/
css
/
bourbon
/
bourbon
/
library
:
_clearfix.scss
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
@charset "UTF-8"; /// Provides an easy way to include a clearfix for containing floats. /// /// @link https://goo.gl/yP5hiZ /// /// @example scss /// .element { /// @include clearfix; /// } /// /// // CSS Output /// .element::after { /// clear: both; /// content: ""; /// display: block; /// } @mixin clearfix { &::after { clear: both; content: ""; display: block; } }