<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The Css Bug &#187; CSS</title>
	<atom:link href="http://thecssbug.com/category/css/feed" rel="self" type="application/rss+xml" />
	<link>http://thecssbug.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 29 Jul 2009 15:52:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML 5 Today</title>
		<link>http://thecssbug.com/html-5-today</link>
		<comments>http://thecssbug.com/html-5-today#comments</comments>
		<pubDate>Mon, 06 Jul 2009 20:24:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[html 5]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=99</guid>
		<description><![CDATA[New features in HTML 5 are here]]></description>
			<content:encoded><![CDATA[<h5>New Features for Web App Developers</h5>
<p>With HTML 5’s emphasis on web application development, there’s plenty of new features for developers to use, some of which we can use today:</p>
<ul>
<li>A 2D drawing API for scripting graphics using the new <code>canvas</code> element, which is supported in all the major browsers except for Internet Explorer.</li>
<li><code>registerProtocolHandler</code> and <code>registerContentHandler</code>, which allow web applications to register for certain protocols or MIME types. Both are available in Firefox.</li>
<li>A manifest caching mechanism to support offline web applications, available in Firefox and Safari.</li>
<li>Video and audio APIs. The majority of the API works in Firefox, Opera (experimental build), and Safari—although Safari only uses Apple’s proprietary .mov format, rather than the open-source Ogg formats supported by Firefox and Opera.</li>
<li><code>window.postMessage</code>: cross-document messaging implemented in all major browsers.</li>
<li><code>history.pushState</code> to enable better back-button support in Ajax apps. (No implementations yet, but <code>window.onhashchange</code> is supported in IE8.)</li>
<li>A drag and drop API with a <code>draggable</code> attribute, supported in Firefox 3.5.</li>
<li>An editing API that hooks into the <code>contenteditable</code> attribute allowed on any element, already in all major browsers.</li>
<li>Client-side persistent storage using key/value pairs and support for embedded SQL databases: key/value pairs are in Firefox, Safari, and IE8, while SQL is supported only in Safari at this point.</li>
</ul>
<p><a href="http://www.sitepoint.com/article/html-5-snapshot-2009/">For more read the full SitePoint article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/html-5-today/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Cool Things We’ll Be Able To Do Once IE6 Is Dead</title>
		<link>http://thecssbug.com/10-cool-things-we%e2%80%99ll-be-able-to-do-once-ie6-is-dead</link>
		<comments>http://thecssbug.com/10-cool-things-we%e2%80%99ll-be-able-to-do-once-ie6-is-dead#comments</comments>
		<pubDate>Mon, 04 May 2009 21:24:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[IE 6]]></category>
		<category><![CDATA[Sitepoint]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=85</guid>
		<description><![CDATA[Are you praying for the day when we can stop supporting IE6? In this post, James gives us some things to look forward to for when that day finally comes!
[SitePoint Article]
]]></description>
			<content:encoded><![CDATA[<p>Are you praying for the day when we can stop supporting IE6? In this post, James gives us some things to look forward to for when that day finally comes!</p>
<p><a href="Are you praying for the day when we can stop supporting IE6? In this post, James gives us some things to look forward to for when that day finally comes!">[SitePoint Article]</a></p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/10-cool-things-we%e2%80%99ll-be-able-to-do-once-ie6-is-dead/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Background image on table rows repeating on columns IE bug</title>
		<link>http://thecssbug.com/background-image-on-table-rows-repeating-on-columns-ie-bug</link>
		<comments>http://thecssbug.com/background-image-on-table-rows-repeating-on-columns-ie-bug#comments</comments>
		<pubDate>Mon, 06 Apr 2009 13:55:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[AJAX]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[background-image]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=26</guid>
		<description><![CDATA[One of the oldest problems in webdesign is related to background images on table rows.
Problem: when you provide a background images (through HTML or CSS) on a table row:


&#60;table&#62;

&#60;tr background=&#34;bg.gif&#34;&#62;

&#60;td&#62;some stuff&#60;/td&#62;

&#60;td&#62;more stuff&#60;/td&#62;

&#60;tr&#62;

&#60;/table&#62;

On Firefox everything would go out as planned. However in older browsers like IE 6, each of the 2 table columns will inherit the [...]]]></description>
			<content:encoded><![CDATA[<p>One of the oldest problems in webdesign is related to background images on table rows.</p>
<p>Problem: when you provide a background images (through HTML or CSS) on a table row:</p>
<pre class="brush: xhtml">

&lt;table&gt;

&lt;tr background=&quot;bg.gif&quot;&gt;

&lt;td&gt;some stuff&lt;/td&gt;

&lt;td&gt;more stuff&lt;/td&gt;

&lt;tr&gt;

&lt;/table&gt;
</pre>
<p>On Firefox everything would go out as planned. However in older browsers like IE 6, each of the 2 table columns will inherit the background image and you will get a nasty effect.</p>
<p>Solution: You will need to use <em>background-image:none </em>on every table cell while the row needs a position:relative.<em><br />
</em></p>
<pre class="brush: xhtml">

&lt;table&gt;

&lt;tr style=&quot;background-image: url(bg.gif);  position: relative;&quot;&gt;

&lt;td style=&quot;background-image:none;&quot;&gt;some stuff &lt;/td&gt;

&lt;td style=&quot;background-image:none;&quot;&gt; more stuff &lt;/td&gt;

&lt;/tr&gt;

&lt;/table&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/background-image-on-table-rows-repeating-on-columns-ie-bug/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change bullet on mouseover (CSS)</title>
		<link>http://thecssbug.com/change-bullet-on-mouseover-css</link>
		<comments>http://thecssbug.com/change-bullet-on-mouseover-css#comments</comments>
		<pubDate>Fri, 03 Apr 2009 11:47:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[ff]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[mouseover]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=20</guid>
		<description><![CDATA[The following short tutorial will show you how to create a simple menu like the one in the image bellow.

In order to simulate de the bullet we use the css property &#8220;background&#8221;.
For positioning the bullet on the right   side, we use &#8220;background-position&#8221; and we specify the left offset in pixels.
We also need to specify [...]]]></description>
			<content:encoded><![CDATA[<p>The following short tutorial will show you how to create a simple menu like the one in the image bellow.</p>
<p><img class="alignnone size-full wp-image-22" title="menu_icons" src="http://thecssbug.com/wp-content/uploads/2009/04/menu_icons.jpg" alt="menu_icons" width="176" height="152" /></p>
<p>In order to simulate de the bullet we use the css property &#8220;background&#8221;.<br />
For positioning the bullet on the right   side, we use &#8220;background-position&#8221; and we specify the left offset in pixels.</p>
<p>We also need to specify the exact width in pixels and the property &#8220;display: block;&#8221;</p>
<pre class="brush: css">
&lt;style type=”text/css”&gt;

a.link
{

text-align:left;
display:block;
width: 140px;
background-image: url(’Bullet.gif’);
background-repeat:no-repeat;
background-attachment: scroll;
background-position: 124px 0px;
text-decoration: none;

}

a.link:hover
{

text-align:left;
display:block;
width: 140px;
background-image: url(’BulletOver.gif’);
background-repeat:no-repeat;
background-attachment: scroll;
background-position: 124px 0px;

}

&lt;/style&gt;

&lt;a href=”http://www.thecssbug.com/” class=”link”&gt;
Mouseover menu
&lt;/a&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/change-bullet-on-mouseover-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
