<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Comments on snippet: 'min-height for IE (and all other browsers)'</title>
<link>http://snipplr.com</link>
<description>Snipplr comments feed'</description>
<language>en-us</language>
<pubDate>Fri, 09 Jan 2009 02:43:21 GMT</pubDate>
<item>
<title>bambam said on 11/20/08</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ Only works for me (in IE7) if I put an !important on the 2nd section: 

/* for browsers that don't suck */
.container {
  min-height:8em; 
  height:auto !important;
}

/* for Internet Explorer */
/*\*/
* html .container {
  height: 8em !important;
}
/**/ ]]></description>
<pubDate>Thu, 20 Nov 2008 07:26:02 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
<item>
<title>Pring4 said on 11/10/08</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ This is specifically for IE6. It does not fully support IE5.5 and below. And yes, IE7 does support min-height properly. ]]></description>
<pubDate>Mon, 10 Nov 2008 15:05:22 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
<item>
<title>superdeluxesam said on 9/10/08</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ Is this specifically IE6 and lower? From my (admittedly brief) look through google it seems IE7 supports the property. ]]></description>
<pubDate>Wed, 10 Sep 2008 09:26:14 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
<item>
<title>rasmus said on 4/4/08</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ <p>If you don't mind the undercore hack you can do it even shorter:</p>

<p>selector {    min-height: 500px;    _height: 500px;    }</p>

<p>This way you avoid using !important for compliant browsers which may or may not trip you up later down the line (through css or style set through js). </p> ]]></description>
<pubDate>Fri, 04 Apr 2008 09:19:02 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
<item>
<title>Winkyboy said on 1/14/08</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ <p>You don't really need the "* html" part of the IE definition, I think.  This same solution can be found on DustinDiaz's site (http://www.dustindiaz.com/min-height-fast-hack/) without it.  Example:</p>

<p>selector {
min-height:500px;
height:auto !important;
height:500px; }</p>
 ]]></description>
<pubDate>Mon, 14 Jan 2008 15:29:59 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
<item>
<title>jonhenshaw said on 7/23/06</title>
<link>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</link>
<description><![CDATA[ <p>I wanted to make it clear that the the <em>8em</em> is arbitrary and can be whatever height you would like it to be. </p>
 ]]></description>
<pubDate>Sun, 23 Jul 2006 00:00:00 GMT</pubDate>
<guid>http://snipplr.com/view/62/minheight-for-ie-and-all-other-browsers/</guid>
</item>
</channel>
</rss>