Compass Float

This module provides mixins that help you work around the double-margin bug in IE5/6.

This file can be imported using: @import "compass/utilities/general/float"

View the Source for this module on Github.

Mixins

View Source: Sass | SCSS

=float-left
  +float(left)
@mixin float-left {
  @include float(left); }

Implementation of float:left with fix for the double-margin bug in IE5/6

View Source: Sass | SCSS

=float-right
  +float(right)
@mixin float-right {
  @include float(right); }

Implementation of float:right with fix for the double-margin bug in IE5/6

View Source: Sass | SCSS

=float($side: left)
  display: inline
  float: unquote($side)
@mixin float($side: left) {
  display: inline;
  float: unquote($side); }

Direction independent float mixin that fixes the double-margin bug in IE5/6