update the docs for compass/utilities/general/float

This commit is contained in:
Chris Eppstein 2010-04-25 19:06:42 -07:00
parent e181ad6a05
commit 4de1645c95
2 changed files with 10 additions and 10 deletions

View File

@ -11,5 +11,7 @@ classnames:
- utilities
---
- render 'reference' do
%p
Lorem ipsum dolor sit amet.
:markdown
This module provides mixins that help you work around the
[double-margin bug in IE5/6][dmb].
[dmb]: http://www.positioniseverything.net/explorer/doubled-margin.html

View File

@ -1,17 +1,15 @@
//**\\
// Float
@import "clearfix";
// Implementation of float:left with fix for double-margin bug
// 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 double-margin bug
// 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); }
// Available as alternate syntax with just +float
// 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: $side; }