Sass / SCSS Mixin for Clearfix - 最佳方法?

时间:2011-08-22 23:16:56

标签: ruby-on-rails-3.1 sass mixins clearfix

我想从HTML中删除clearfix类,并在我的SCSS(Rails 3.1应用程序)中包含clearfix mixin。对此最好的方法是什么?

我正在考虑将HTML 5 Boilerplate clearfix转换为mixin,然后在CSS中包含需要clearfixing的元素。

从HTML5 Boilerplate复制:

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements. http://j.mp/bestclearfix */
.clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; }
.clearfix:after { clear: both; }

/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin padding-bottom-of-page */
.clearfix { zoom: 1; }

这有缺点吗?有没有更好的办法?我可以通过这种方式安全地从我的HTML标记中删除clearfix吗?

4 个答案:

答案 0 :(得分:31)

我应该补充一下 - 这是我提出的解决方案。我仍然对这一切都很陌生,所以我不知道这是否实际上与将元素的类设置为clearfix并使用上面的HTML5样板代码完全相同。

@mixin clearfix {
    zoom:1;
    &:before, &:after {
        content: "\0020"; 
        display: block; 
        height: 0; 
        overflow: hidden; 
    }
    &:after {
        clear: both;
    }
}

修改 最好使用@extend而不是mixin,因为它会产生更少的CSS代码。 此外,使用%时使用静默类(由@extend表示)很有用。如果unexpected CSS rules直接not being used,这会阻止{{3}}并取消您正在扩展的规则。

%clearfix {
    zoom:1;
    &:before, &:after {
        content: "\0020";
        display: block;
        height: 0;
        overflow: hidden;
    }
    &:after {
        clear: both;
    }
}

#head {
    @extend %clearfix;
    padding: 45px 0 14px; margin: 0 35px 0;
    border-bottom: 1px solid $border;
}

答案 1 :(得分:12)

要使用@extend实现更少的代码输出,请将clearfix定义为placeholder(此处仅适用于IE 6 + 7的现代浏览器):

Sass代码:

%clearfix {
    &:after {
        content: " ";
        display: block;
        clear: both;
    }
}

/* Use above defined placeholder in the selector(s) of your needs via @extend: */
#container {
    position: relative;
    min-width: 42.5em;
    @extend %clearfix;
}

CSS输出将是:

#container:after {
    content: " ";
    display: block;
    clear: both;
}
#container {
    position: relative;
    min-width: 42.5em;
}

答案 2 :(得分:4)

// source http://www.alistapart.com/articles/getting-started-with-sass/
// http://nicolasgallagher.com/micro-clearfix-hack/

    @mixin clearfix {
     // For modern browsers
      &:before,
      &:after {
        content:" ";
        display:table;
      }

      &:after {
        clear:both;
      }

      // For IE 6/7 (trigger hasLayout)
      & {
        *zoom:1;
      }
    }

答案 3 :(得分:2)

为什么不使用Compass框架?它已经在众多其他有用的mixin和实用程序中提供了mixins for clearfix。寻找现有工具总是更好,而不是自己维护额外的代码。