BlogDownloadsProjectsGalleriesContact

min-height für IE

Mit min-width oder min-height kann die Mindestbreite oder die Mindesthöhe im CSS bestimmt werden. Mozilla, Firefox, Opera und Safari (ausgenommen Version 1.2)
unterstützen die CSS Angabe min-height längst.

Das Sorgenkind IE hat hier ein etwas anderes Konzept!!
http://msdn.microsoft.com/workshop/author/dhtml/overview/recalc.asp
Dinosaurier IE Browser auf MAC macht nicht mit.
div#container { 
min-width:200px;
width:expression(document.body.clientWidth > 200 ? "auto":"200px")
}
      
div#container {
min-height:400px;
height:expression(document.body.clientHeight > 400 ? "auto":"400px")
}
Comments (0)  Permalink

comments

add a comment

No new comments allowed (anymore) on this post.