css 包含以下内容的浮动元素:http://css-tricks.com/snippets/css/clear-fix/

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css 包含以下内容的浮动元素:http://css-tricks.com/snippets/css/clear-fix/相关的知识,希望对你有一定的参考价值。

.group:after {
  content: "";
  display: table;
  clear: both;
}

/* or */

@mixin clearfix {
  &::after {
    content: '';
    display: table;
    clear: both;
  }
}

以上是关于css 包含以下内容的浮动元素:http://css-tricks.com/snippets/css/clear-fix/的主要内容,如果未能解决你的问题,请参考以下文章