Feb
23

[CSS] min/max width & height for IE

Dùng expression, sẽ ảnh hưởng đến tốc độ render của browser nếu dùng nhiều, tốt nhất chỉ dùng riêng cho IE (dùng cách include hoặc * html):
/* min-max width */
width:1000px;
min-width:900px;
max-width: 1100px;
width:expression(document.body.clientWidth < 902? "900px" : document.body.clientWidth > 1100? "1100px" : "auto");

/* min-max height */
height:900px;
min-height:900px;
max-height:1100px;
height: expression( this.scrollHeight < 902 ? "900px" : this.scrollHeight > 1100 ? "1100px" :  "auto" );

Min-height dùng !important
min-height:900px;
height:auto !important;
height:900px;

No Comments

RSS Feed TrackBack URL

Feel free to leave your comment

Leave a comment

    top
    Powered by WordPress. Copyright © 2008 - 2010 Hien Nguyen. Theme design by Hagin