Sha256: 7903211ead11932fe15437e5ed9bd48135a7ebd686b34f3e10b21c08490211c5
Contents?: true
Size: 615 Bytes
Versions: 29
Compression:
Stored size: 615 Bytes
Contents
// Implementation of float:left with fix for the // [double-margin bug in IE5/6](http://www.positioniseverything.net/explorer/doubled-margin.html) @mixin float-left { @include float(left); } // Implementation of float:right with fix for the // [double-margin bug in IE5/6](http://www.positioniseverything.net/explorer/doubled-margin.html) @mixin float-right { @include float(right); } // Direction independent float mixin that fixes the // [double-margin bug in IE5/6](http://www.positioniseverything.net/explorer/doubled-margin.html) @mixin float($side: left) { display: inline; float: unquote($side); }
Version data entries
29 entries across 26 versions & 2 rubygems