What is the definitive way to mimic the CSS property min-width in Internet Explorer 6? Is it better not to try?
|
2
|
|
|
|
|
|
(or serve a separate stylesheet to IE using conditional comments) |
||||||||||||
|
|
|
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.
This requires a little non-semantic markup but is a truly cross-browser solution and doesn't require the overhead of using an expression. |
||
|
|
|
This works pretty well...
|
||
|
|
|
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 dunno, I had some success with:
A combination of dustin diaz' min-height fast hack & http://is.gd/14BPS |
||
|
|
|
|
do your css tag as _Width: 500px or whatever. |
||
|
|
|
|
Min-height fast hack works for me (also works for width) |
||
|
|
|
|
Use conditional comments to reference and MSIE 6 specific style sheet, then create CSS as below. Compliant browsers will use:
Then MSIE 6 will use:
|
||
|
|
|
|
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). |
||
|
|
|
|
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.
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.
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.
|
||
|
|


