Skip to content

Instantly share code, notes, and snippets.

@RyoSugimoto
Last active August 29, 2015 13:59
Show Gist options
  • Save RyoSugimoto/10540863 to your computer and use it in GitHub Desktop.
Save RyoSugimoto/10540863 to your computer and use it in GitHub Desktop.
IE6のためのmin-height、min-width、max-height、max-width。
.foo {
min-height: 100px;
height: auto !important;
height: 100px;
}
.bar {
max-height: 200px;
width: expression(document.body.clientWidth > 202? "200px" : "auto");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment