We Recommend

CSS: The Definitive Guide CSS: The Definitive Guide
Provides you with a comprehensive guide to CSS implementation, along with a thorough review of all aspects of CSS 2.1. Updated to cover Internet Explorer 7, Microsoft's vastly improved browser, this new edition includes content on positioning, text wrapping (nowrap), lists and generated content, table layout, user interface, paged media, and more.


Posted By

LukeLarsen on 01/29/08


Tagged

ie min-height with


Versions (?)


Who likes this?

2 people have marked this snippet as a favorite

arala22
basicmagic


Min-height with IE


Published in: CSS 


will make the container expand with the text.


  1. /* for understanding browsers */
  2. .roundBox_475 .middle {
  3. min-height:100px;
  4. height:auto;
  5. }
  6. /* for Internet Explorer */
  7. /*\*/
  8. * html .roundBox_475 .middle {
  9. height: 100px;
  10. }
  11. /**/

Report this snippet 

You need to login to post a comment.