// Trigger the hasLayout property on IE6. @mixin haslayout {

zoom: 1;

}

// Hacks to implement min-height and min-width in IE6. // See www.dustindiaz.com/min-height-fast-hack/ for more info. @mixin minheight($height) {

min-height: $height;
height: auto !important;
height: $height;

}

@mixin minwidth($width) {

min-width: $width;
width: auto !important;
width: $width;

}

// Fix for IE6 double float margin bug. // See www.positioniseverything.net/explorer/doubled-margin.html // for more info. @mixin doublefloatmarginfix {

display: inline;
float: left;

}

// Fix for IE6 peekaboo bug. // See www.positioniseverything.net/explorer/peekaboo.html for // more info. @mixin peekaboofix {

_display: inline-block;

}