CSS min-height屬性的兼容問題可以通過以下方法解決:
div {
-webkit-min-height: 200px;
-moz-min-height: 200px;
-o-min-height: 200px;
min-height: 200px;
}
<!--[if lt IE 9]>
<style>
div {
height: 200px;
}
</style>
<![endif]-->
var div = document.getElementById("myDiv");
if (div.style.minHeight === undefined) {
div.style.height = "200px";
}
這些方法可以幫助解決CSS min-height屬性的兼容問題,并確保在不同瀏覽器中都能正確地顯示。