css實現的規定最小高度然後高度自適應程式碼例項

antzone發表於2017-03-15

實際應用中可能有這樣的需求,那就是給一個元素設定一個最小高度,如果內容超出這個最小高度,那麼就實現高度自適應,下面就通過程式碼例項介紹一下如何利用css實現此功能。

程式碼如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.antzone{
  height:100px;
  height:auto;
  min-height:100px;
  width:200px;
  background:#bbeeeb;
  margin:0 auto;
}
</style>
</head>
<body>
<div class="antzone"></div>
</body>
</html>

相關文章