Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_clearfix.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 439455f6d8fabc3ea2aabcc04d10316f76469849 (plain)
1
2
3
4
5
6
7
@mixin clearfix() {
  &:after {
    content: "";
    display: table;
    clear: both;
  }
}