Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 239 Bytes

clearfix.md

File metadata and controls

16 lines (15 loc) · 239 Bytes
title description author tags
Clearfix
Provides a clearfix utility for floating elements.
technoph1le
clearfix,utility,css
@mixin clearfix {
  &::after {
    content: '';
    display: block;
    clear: both;
  }
}