Firefox Min-Width Ignored.
Posted: 24 July 2007 02:06 PM   [ Ignore ]
Newbie
Rank
Total Posts:  1
Joined  2007-07-24

I’m totally confused.  I understand that IE does not support min-width, but it was my understanding that firefox does.


I have the following code which is not working in firefox.  Does anyone know what / why min-width is not being recognized by firefox?  The IE workaround for min-width is in play here and working.:

html>body .popupstyle
{
width: auto;
height: auto;
min-width: 250px;

}

.popupstyle
{
  width:[removed](document.getElementById(“mypopup2”).clientWidth <255) ? “250px” : “auto”);
  height:auto; 
  filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=0, xray=0, mirror=0, invert=0, opacity=0.90, rotation=0);
 
}

Profile