DIV CSS Web page layout minimum height (min-height) of the magical experience _ Exchange

Source: Internet
Author: User
Tags min
Assuming there are two box, we need it with a minimum height of 150PX.
Css
div.box1,div.box2{
width:300px;
min-height:150px;
Background: #EEE;
Float:left;
margin-right:20px;
}
Xhtml
The minimum height in the <div>ie is 150px</div>
<div> minimum height can be set to the minimum height of a box, when its content is less often, also can keep box height is certain </div>
Now the effect, ie did not maintain a minimum height of 150px.
Way to solve
Set a height for IE
* HTML div.box1,* HTML div.box2{height:150px;}
The wellstyled.com solution is to use the CSS property selector (attribute selectors)
div.box1,div.box2{... height:150px;
/* IE to maintain the minimum height, beyond the automatic downward extension * *
Div[class].box1,div[class].box2{height:auto;}
/* Div object with class selector (Class) attribute/*
IE is not supported by nature, Opera and Mozilla support, read this height. Applicable occasions: Search, articles and other pages (not using 100% height, when the content of the search is less, not too short page.)
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.