DIV CSS網頁布局 最小高度(min-height)的妙用

來源:互聯網
上載者:User

假定有二個BOX,我們需要它的最小高度為150PX。
CSS
div.box1,div.box2{
width: 300px;
min-height: 150px;
background: #EEE;
float: left;
margin-right: 20px;
}
xhtml
<div>IE中沒保持最小高度為150px</div>
<div>最小高度可以設定一個BOX的最小高度, 當其內容較少時時,也能保持BOX的高度為一定</div>
現在的效果,IE中沒保持最小高度為150px。
解決的方法
為IE設定一個高度
* html div.box1,* html div.box2{height: 150px;}
wellstyled.com 的解決方案是採用 CSS 的屬性選擇符(Attribute Selectors)
div.box1,div.box2{ ......height: 150px;}
/* IE靠這保持最小高度,超出就自動向下延伸 */
div[class].box1,div[class].box2{height: auto;}
/* 具有類選擇符(class)屬性的DIV對象 */
IE自然又是不支援的啦,Opera 和 Mozilla 支援,讀取這個高度。可應用場合:搜尋、文章等頁面(沒採用100%高度,當搜到的內容較少時,不至於頁面太短。
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.