vote up 4 vote down star
2

What is the definitive way to mimic the CSS property min-width in Internet Explorer 6? Is it better not to try?

flag

10 Answers

vote up 8 vote down check
foo { min-width: 100px }      // for everyone
* html foo { width: 100px }   // just for IE

(or serve a separate stylesheet to IE using conditional comments)

link|flag
This does not provide a min width in IE. You are effectively just giving up on IE... – Prestaul Sep 18 '08 at 23:58
1  
Prestaul, IE6 treats width as min-width. – Magnar Sep 19 '08 at 11:18
My understanding is that this will work in IE6, but not IE7: blog.throbs.net/2006/11/… – Prestaul Sep 21 '08 at 5:44
The same fix applied to min-height seems to work in both IE6 and IE7 for me! – Christoph Schiessl Oct 6 '08 at 10:54
This solution does not seems to be working with IE8. – Nordes May 25 at 12:43
show 2 more comments
vote up 2 vote down

You could use an expression (as suggested by HBoss), but if you are worried about performance then the best way to do this is to add a shim inside the element you want to apply a min-width to.

<div id="container">
  The "shim" div will hold the container div open to at least 500px!
  You should be able to put it anywhere in the container div.
  <div class="shim">&nsbp;</div>
</div>

#container .shim {
  width: 500px;
  height: 0;
  line-height: 0;
}

This requires a little non-semantic markup but is a truly cross-browser solution and doesn't require the overhead of using an expression.

link|flag
Nice one, very crafty – Chris Serra Oct 14 '08 at 18:13
vote up 1 vote down

This works pretty well...

div.container {
    min-width: 760px; 
    width:expression(document.body.clientWidth < 760? "760px": "auto" ); 
}
link|flag
That CSS will not validate to W3C standards. Plus it can cause undesired effects [456bereastreet.com/archive/200611/…. Also, CSS should only have presentation, not behaviour. – Rich Adams Sep 18 '08 at 15:27
vote up 1 vote down

This article on CSS Play, by Stu Nicholls, shows the different methods for achieving min-width in IE, in all modes (Quirks, etc) and even for IE/Mac.

link|flag
vote up 1 vote down

I dunno, I had some success with:

	min-width: 193px;
	width:auto !important; 
	_width: 193px;	/* IE6 hack */

A combination of dustin diaz' min-height fast hack & http://is.gd/14BPS

link|flag
vote up 0 vote down

do your css tag as _Width: 500px or whatever.

link|flag
vote up 0 vote down

Min-height fast hack works for me (also works for width)

link|flag
vote up 0 vote down

Use conditional comments to reference and MSIE 6 specific style sheet, then create CSS as below.

Compliant browsers will use:

min-width: 660px;

Then MSIE 6 will use:

width: expression((document.body.clientWidth < 659)? "660px" : "auto");
link|flag
vote up 0 vote down

I've fiddled with every answer given here in the past month. And after playing with Pretaul's method (http://stackoverflow.com/questions/93274/min-width-in-msie-6#93530), it seems to be the best alternative to min-width. No hacks or anything, just straight up compliant CSS code which takes 30 seconds to implement.

From Googling around, expressions seem to be the most popular. For me anyways, ittended to randomly lock up my browser (both IE and FF).

link|flag
vote up 0 vote down

The shim example is fine for forcing the browser to show a horizontal scroll bar when the container gets to a certain size but you'll notice that the content in the container will still be resized as the window gets smaller. I imagine that this is not the overall goal when trying to achieve minimum width in IE 6.

Incomplete min-width technique

Furthermore, the use of expressions and other crazy CSS hacks just isn't good practice. They are unsafe and unclean. This article explains the caveats of CSS hacks and why they should be avoided altogether.

I personally consider scaryjeff's post to be the best advice for achieving true min-width in IE6 and as an experienced CSS layout developer I've yet to find a better solution that is as applicable to problems of this kind.

This article on CSS Play, by Stu Nicholls, shows the different methods for achieving min-width in IE, in all modes (Quirks, etc) and even for IE/Mac.

I've provided an answer to a similar question that details the use of this technique to correctly achieve min-width. It can be viewed here:

http://stackoverflow.com/questions/191429/css-two-50-fluid-columns-not-respecting-min-width#230152

The technique is simple, valid CSS that can be used in almost any situation. Applied to the shim example above it results in what I consider to be correct min-width functionality.

Correct min-width technique

link|flag

Your Answer

Get an OpenID
or

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