IE6でもmin-width、min-height
- 投稿日 : 2008-04-18, 12:38(最終更新日時 : 2009-12-25, 20:14)
- タグ(CSS Design)
- カテゴリ(Design)
- 記し人(luvsic)
- 閲覧数(492)
- ver1.0 / 比較
しょっちゅう思い出せない。
記録用
/* min-height */
.foo {
min-height:100px;
height: auto !important;
height: 100px;
}
/* min-width */
.bar {
min-width:100px;
width: auto !important;
width: 100px;
}
.foo {
min-height:100px;
height: auto !important;
height: 100px;
}
/* min-width */
.bar {
min-width:100px;
width: auto !important;
width: 100px;
}
max-widthも可能の様子。
IE6でもCSSのみでmax-widthを実現する
No comments yet