<?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: Why I wish there were 1 browser</title>
	<atom:link href="http://elliottback.com/wp/why-i-wish-there-were-1-browser/feed/" rel="self" type="application/rss+xml" />
	<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/</link>
	<description>Internet &#38; Technology</description>
	<lastBuildDate>Sun, 22 Nov 2009 02:40:56 -0400</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: ghfghfgh</title>
		<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/#comment-329572</link>
		<dc:creator>ghfghfgh</dc:creator>
		<pubDate>Thu, 21 Dec 2006 22:16:00 +0000</pubDate>
		<guid isPermaLink="false">/?p=288#comment-329572</guid>
		<description>gdfhjxfygjkgygh</description>
		<content:encoded><![CDATA[<p>gdfhjxfygjkgygh</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: New Jersey Web Design</title>
		<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/#comment-21367</link>
		<dc:creator>New Jersey Web Design</dc:creator>
		<pubDate>Fri, 20 Jan 2006 17:02:42 +0000</pubDate>
		<guid isPermaLink="false">/?p=288#comment-21367</guid>
		<description>Oh how I agree......As a web designer, I have to test on multiple browsers to make sure that all elements on the page are displayed properly across multiple browser platforms. I constantly notice that IE can &quot;figure&quot; out the code&#039;s intentions and properly display the image or element correctly. However, on the other hand, FireFox has a tough time parsing the code and translating it correctly on the screen, especially if there are errors in the code. Typical errors that affect the browsers are open tags, and erroneous code. I also recommend validating your code here: http://validator.w3.org/</description>
		<content:encoded><![CDATA[<p>Oh how I agree&#8230;&#8230;As a web designer, I have to test on multiple browsers to make sure that all elements on the page are displayed properly across multiple browser platforms. I constantly notice that IE can &#8220;figure&#8221; out the code&#8217;s intentions and properly display the image or element correctly. However, on the other hand, FireFox has a tough time parsing the code and translating it correctly on the screen, especially if there are errors in the code. Typical errors that affect the browsers are open tags, and erroneous code. I also recommend validating your code here: <a href="http://validator.w3.org/" rel="nofollow">http://validator.w3.org/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denis</title>
		<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/#comment-628</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Fri, 14 Jan 2005 18:50:54 +0000</pubDate>
		<guid isPermaLink="false">/?p=288#comment-628</guid>
		<description>Silly html stripping... It you should read:

div style=&quot;border: solid 1px black; padding: 30px;&quot;
textarea style=&quot;width: 100%&quot;
(...)

and:

table style=&quot;border: outset 1px&quot;
tr
td
(...)

respectively</description>
		<content:encoded><![CDATA[<p>Silly html stripping&#8230; It you should read:</p>
<p>div style=&#8221;border: solid 1px black; padding: 30px;&#8221;<br />
textarea style=&#8221;width: 100%&#8221;<br />
(&#8230;)</p>
<p>and:</p>
<p>table style=&#8221;border: outset 1px&#8221;<br />
tr<br />
td<br />
(&#8230;)</p>
<p>respectively</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Denis</title>
		<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/#comment-627</link>
		<dc:creator>Denis</dc:creator>
		<pubDate>Fri, 14 Jan 2005 18:47:19 +0000</pubDate>
		<guid isPermaLink="false">/?p=288#comment-627</guid>
		<description>&lt;blockquote cite=&quot;Shaun&quot;&gt;IF only IE rendered CSS/XHTML to standards, hey?&lt;/blockquote&gt;

As fas as I tried, Firefox 1.0, despite its endorsement of css, is not css-1 compliant.

Consider the following:

&lt;code&gt;&lt;div style=&quot;border: solid 1px black; padding: 30px;&quot;&gt;&lt;textarea style=&quot;width: 100%&quot;&gt;blah&lt;/textarea&gt;&lt;/div&gt;&lt;/code&gt;

It is perfectly valid xhtml and css.

According to the w3c specs regarding the dom&#039;s box model, you should get a text area within a division that has a 30px padding and a 1px black border. You get precicely that in IE. In Firefox 1.0, on the other hand, the text area is properly positionned, but has the division&#039;s width rather than 60px less.

Similarly, consider:

&lt;table style=&quot;border: outset 1px;&quot;&gt;
  &lt;tr&gt;
    &lt;td&gt;blah&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;

IE renders an outset border. Firefox, on the other hand, renders this as a solid border.

My $.02 as a Firefox user.</description>
		<content:encoded><![CDATA[<blockquote cite="Shaun"><p>IF only IE rendered CSS/XHTML to standards, hey?</p></blockquote>
<p>As fas as I tried, Firefox 1.0, despite its endorsement of css, is not css-1 compliant.</p>
<p>Consider the following:</p>
<p><code>
<div style="border: solid 1px black; padding: 30px;"><textarea style="width: 100%">blah</textarea></div>
<p></code></p>
<p>It is perfectly valid xhtml and css.</p>
<p>According to the w3c specs regarding the dom&#8217;s box model, you should get a text area within a division that has a 30px padding and a 1px black border. You get precicely that in IE. In Firefox 1.0, on the other hand, the text area is properly positionned, but has the division&#8217;s width rather than 60px less.</p>
<p>Similarly, consider:</p>
<table style="border: outset 1px;">
<tr>
<td>blah</td>
</tr>
</table>
<p>IE renders an outset border. Firefox, on the other hand, renders this as a solid border.</p>
<p>My $.02 as a Firefox user.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: don't worry</title>
		<link>http://elliottback.com/wp/why-i-wish-there-were-1-browser/#comment-608</link>
		<dc:creator>don't worry</dc:creator>
		<pubDate>Thu, 06 Jan 2005 21:47:42 +0000</pubDate>
		<guid isPermaLink="false">/?p=288#comment-608</guid>
		<description>&lt;a href=&quot;http://jigsaw.w3.org/css-validator/validator?profile=css2&amp;warning=2&amp;uri=http%3A//elliottback.com/wp/archives/2004/12/30/why-i-wish-there-were-1-browser/%23comments&quot;&gt;Doesn&#039;t look like it validates to me&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p><a href="http://jigsaw.w3.org/css-validator/validator?profile=css2&#038;warning=2&#038;uri=http%3A//elliottback.com/wp/archives/2004/12/30/why-i-wish-there-were-1-browser/%23comments">Doesn&#8217;t look like it validates to me</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
