Minimum Dimensions

Cross browser implementation of min-height and min-width.

This file can be imported using: @import "compass/utilities/general/min"

View the Source for this module on Github.

Imports

The following sass files are automatically imported when you import this file:

  1. Hacks – Mixins for hacking specific browsers.

Mixins

View Source: Sass | SCSS

=min-height($value)
  +hacked-minimum(height, $value)
@mixin min-height($value) {
  @include hacked-minimum(height, $value); }

Cross browser min-height mixin.

View Source: Sass | SCSS

=min-width($value)
  +hacked-minimum(width, $value)
@mixin min-width($value) {
  @include hacked-minimum(width, $value); }

Cross browser min-width mixin.