CSS min-height和max-height

admin發表於2017-02-23
標題中的兩個屬性用來設定元素的最小高度和最大高度。

看如下程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
#box {
  width:500px;
  max-height:600px;
  min-height:300px;
  background-color:#ccc;
}
#ant {
  background:#F00;
  width:400px;
  height:400px;
}
</style>
<script>
window.onload = function () {
  var ant = document.getElementById("ant");
  var rang = document.getElementById("range");
  rang.onmousemove = function () {
    ant.style.height = this.value + "px";
  }
}
</script>
</head>
<body>
<div id="box">
  <div id="ant"></div>
</div>
<input type="range" min="0" max="700" value="400" id="range"/>
</body>
</html>

拖動滑動軸可以檢視效果,外層div的高度能夠自適應內部元素的高度,但是被限定在min-height和max-height屬性規定的值之間。

相關文章