[Compass Core] Fix an IE6 bug in the min-height and min-width mixins. Closes GH-123.

This commit is contained in:
Chris Eppstein 2010-05-03 07:53:51 -07:00
parent c245d112ec
commit 842d39ebe0

View File

@ -11,5 +11,5 @@
// A hack to supply IE6 (and below) with a different property value.
// [Read more](http://www.cssportal.com/css-hacks/#in_css-important).
@mixin bang-hack($property, $value, $ie6-value) {
#{$property}: #{$value} !important;
#{$property}: #{$ie6-value}; }
#{$property}: #{$ie6-value} !important;
#{$property}: #{$value}; }