| Account Suspended Name: Bryan Location: Whitewater, WI Join Date: May 2005
Posts: 3,714
NP$: 0.00 ( Donate)
| Good CSS Tip I had a previous problem with the min-height attribute because it works in Firefox but not in IE. There are many solutions out there and some are quite tedious. I found a great hack, although the css won't validate this one thing, but it does save a headache.
#Name
{
min-height:300px;
_height:300px;
}
The min-height works for all browsers except IE and the _height is a hack that no other browsers read but IE respects. So if you need to use a minimum height but you are having troubles, try using the _height hack. |