<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Fieldset and Legend bug in IE8</title>
	<atom:link href="http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/feed/" rel="self" type="application/rss+xml" />
	<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/</link>
	<description>Web Development, Web Design, Web Applications, Web 2.0, AJAX, WordPress Themes, Search Engine Optimisation, Latest Technologies and more..</description>
	<lastBuildDate>Tue, 20 Mar 2012 09:48:42 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Kau-Boy</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-147195</link>
		<dc:creator>Kau-Boy</dc:creator>
		<pubDate>Tue, 21 Dec 2010 15:35:59 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-147195</guid>
		<description>Thank you a LOT! I couldn&#039;t find why IE was doing it, no I know it! I solved it by replacing &quot;display: none&quot; with &quot;visibility: hidden; height: 0&quot; for the legend.</description>
		<content:encoded><![CDATA[<p>Thank you a LOT! I couldn&#8217;t find why IE was doing it, no I know it! I solved it by replacing &#8220;display: none&#8221; with &#8220;visibility: hidden; height: 0&#8243; for the legend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Francesco</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-142344</link>
		<dc:creator>Francesco</dc:creator>
		<pubDate>Fri, 12 Nov 2010 14:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-142344</guid>
		<description>My issue was that the fieldset wasn&#039;t having the whole border rendered untill I removed display:none; from the legend, leaving us with this code:

body.ie8 #content #frmLogin fieldset legend {
	display:block;
	height:0;
	visibility:hidden;
	width:0;
}

With that, the fieldset is rendered OK</description>
		<content:encoded><![CDATA[<p>My issue was that the fieldset wasn&#8217;t having the whole border rendered untill I removed display:none; from the legend, leaving us with this code:</p>
<p>body.ie8 #content #frmLogin fieldset legend {<br />
	display:block;<br />
	height:0;<br />
	visibility:hidden;<br />
	width:0;<br />
}</p>
<p>With that, the fieldset is rendered OK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prakhar</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-137280</link>
		<dc:creator>Prakhar</dc:creator>
		<pubDate>Mon, 11 Oct 2010 04:31:37 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-137280</guid>
		<description>Hi this is the proper workaround and this wont make the legend disappear.

fieldset
{
margin: 0.8em 0px; 
padding: 1em; 
}</description>
		<content:encoded><![CDATA[<p>Hi this is the proper workaround and this wont make the legend disappear.</p>
<p>fieldset<br />
{<br />
margin: 0.8em 0px;<br />
padding: 1em;<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ewen</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-127151</link>
		<dc:creator>Ewen</dc:creator>
		<pubDate>Sat, 19 Jun 2010 13:58:22 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-127151</guid>
		<description>@WoBBeL,

It&#039;s supposed to...
The CSS is meant to simulate display:hidden in order to avoid the fieldset border bug.</description>
		<content:encoded><![CDATA[<p>@WoBBeL,</p>
<p>It&#8217;s supposed to&#8230;<br />
The CSS is meant to simulate display:hidden in order to avoid the fieldset border bug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WoBBeL</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-126795</link>
		<dc:creator>WoBBeL</dc:creator>
		<pubDate>Sun, 13 Jun 2010 12:29:29 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-126795</guid>
		<description>@Ewen,

With your CSS the legend text dissapears :P</description>
		<content:encoded><![CDATA[<p>@Ewen,</p>
<p>With your CSS the legend text dissapears :P</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ewen</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-126769</link>
		<dc:creator>Ewen</dc:creator>
		<pubDate>Sat, 12 Jun 2010 12:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-126769</guid>
		<description>This works without having to add any additional html

legend
{
    overflow:hidden;
    width:0;
    height:0;
    padding:0;
    font-size:0
}

http://www.jainaewen.com/files/html/ie-fieldset-legend.html</description>
		<content:encoded><![CDATA[<p>This works without having to add any additional html</p>
<p>legend<br />
{<br />
    overflow:hidden;<br />
    width:0;<br />
    height:0;<br />
    padding:0;<br />
    font-size:0<br />
}</p>
<p><a href="http://www.jainaewen.com/files/html/ie-fieldset-legend.html" rel="nofollow">http://www.jainaewen.com/files/html/ie-fieldset-legend.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dieMelanie</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-125825</link>
		<dc:creator>dieMelanie</dc:creator>
		<pubDate>Thu, 27 May 2010 11:39:01 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-125825</guid>
		<description>Thanks a bunch. This problem was driving me nuts.</description>
		<content:encoded><![CDATA[<p>Thanks a bunch. This problem was driving me nuts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: chaelli</title>
		<link>http://eisabainyo.net/weblog/2009/05/19/fieldset-and-legend-bug-in-ie8/comment-page-1/#comment-122121</link>
		<dc:creator>chaelli</dc:creator>
		<pubDate>Wed, 14 Apr 2010 18:14:27 +0000</pubDate>
		<guid isPermaLink="false">http://eisabainyo.net/weblog/?p=619#comment-122121</guid>
		<description>Thanks, I had the same problem on my website. Now it works. (:</description>
		<content:encoded><![CDATA[<p>Thanks, I had the same problem on my website. Now it works. (:</p>
]]></content:encoded>
	</item>
</channel>
</rss>

