Compass Hacks
A collection of mixins for hacking specific browsers.
This file can be imported using:
@import "compass/utilities/general/hacks"
Imports
- Browser Support – Provides configuration options for the Compass Browser Support Matrix.
Configurable Variables help
$default-has-layout-approach
zoom
The zoom approach generates less CSS but does not validate.
Set this to block to use the display-property to hack the
element to gain layout.
Mixins
view sourcehas-layout($approach)
=has-layout($approach: $default-has-layout-approach)
@if $legacy-support-for-ie
@if $approach == zoom
+has-layout-zoom
@else if $approach == block
+has-layout-block
@else
@warn "Unknown has-layout approach: #{$approach}"
+has-layout-zoom
@mixin has-layout($approach: $default-has-layout-approach) {
@if $legacy-support-for-ie {
@if $approach == zoom {
@include has-layout-zoom; }
@else if $approach == block {
@include has-layout-block; }
@else {
@warn "Unknown has-layout approach: #{$approach}";
@include has-layout-zoom; } } }
This mixin causes an element matching the selector to gain the "hasLayout" property in internet explorer. More information on hasLayout.
has-layout-zoom
=has-layout-zoom
@if $legacy-support-for-ie
*zoom: 1
@mixin has-layout-zoom {
@if $legacy-support-for-ie {
*zoom: 1; } }
has-layout-block
=has-layout-block
@if $legacy-support-for-ie
// This makes ie6 get layout
display: inline-block
// and this puts it back to block
&
display: block
@mixin has-layout-block {
@if $legacy-support-for-ie {
// This makes ie6 get layout
display: inline-block;
// and this puts it back to block
& {
display: block; } } }
bang-hack($property, $value, $ie6-value)
=bang-hack($property, $value, $ie6-value)
@if $legacy-support-for-ie6
#{$property}: #{$value} !important
#{$property}: #{$ie6-value}
@mixin bang-hack($property, $value, $ie6-value) {
@if $legacy-support-for-ie6 {
#{$property}: #{$value} !important;
#{$property}: #{$ie6-value}; } }
A hack to supply IE6 (and below) with a different property value. Read more.