If only to implement max-height:

max-height:200px;
 height:auto !important;
 height:200px;
 overflow:hidden;

if only to implement min-height:

min-height:40px;
height:auto!important;
height:40px;

See?There is conflict on height!

What's the solution?

link|improve this question

42% accept rate
feedback

3 Answers

up vote 2 down vote accepted

If you want to go pure CSS, I'd go the conditional stylesheet route.

However, my preferred solution is just a touch of jQuery:

  $(document).ready() (function() {
    if ($("#division").height() > 200) {
        $("#division").height('200px');
    }
    if ($("#division").height() < 40) {
        $("#division").height('40px');
    }
  }
link|improve this answer
Simple,but work,life is so beautiful! – omg Sep 23 '09 at 19:40
2  
won'y be so beautiful for those users of yours without javascript, though. – pixeline Sep 23 '09 at 20:31
feedback

Here's a technique derived from an article on min-height and max-height in IE:

* html div#division { 
   height: expression(this.scrollHeight >= 200 ? "200px" : this.scrollHeight <= 40 ? "40px" : "auto");
}

div#division {
   min-height: 40px;
   max-height: 200px;
   overflow: hidden;
}

The expression value works only in IE, but works back as far as IE 5. Here, it keeps the height property within the desired range. Standards-compliant browsers will ignore this declaration, and instead use the min-height and max-height rules.

Caveat: JavaScript must be enabled in IE for expression to work.

The technique you are currently using might be preferred by the "use only pure CSS" crowd, but IMHO it is obscure and brittle. Using a non-standard, IE-specific value makes it clear that the code is written specifically to support IE. Not only is this self-documenting, it also makes it easier to migrate the IE-specific code into separate CSS files.

link|improve this answer
Don’t use expression. It needs to be evaluated on any event (mouse move, scroll, key stroke, etc.). – Gumbo Sep 23 '09 at 18:52
@Gumbo, I did not know that. Thanks! I'm starting to like mabwi's jQuery answer now, especially since expression requires scripting to be enabled anyway. – system PAUSE Sep 23 '09 at 19:20
feedback

i assume you write your CSS like this because you want to support Internet Explorer, which does not recognize min-height max-height.

I suggest you move everything into a conditional stylesheet, that only IE will use:

<!--[if IE]>
    <link rel="stylesheet" type="text/css" href="ie-only.css" />
<![endif]-->

Read this for more info on this technique. It's the only proper way to deal with Explorer's issues.

link|improve this answer
1  
Yes, but what do you put in that stylesheet to get IE to support both a minimum height and a maximum height? – system PAUSE Sep 23 '09 at 19:18
I'm going to ask the same question. – omg Sep 23 '09 at 19:24
AFAIK, you can't. Just live with it and set the height for IE users (so in your IE-only.css stylesheet) to 200px. Then use your jquery trick so you degrade gracefully for most users, without losing on functionality. – pixeline Sep 23 '09 at 21:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.