<?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; Html</title>
	<atom:link href="http://thecssbug.com/category/html/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>onChange Internet Explorer bug</title>
		<link>http://thecssbug.com/onchange-internet-explorer-bug</link>
		<comments>http://thecssbug.com/onchange-internet-explorer-bug#comments</comments>
		<pubDate>Wed, 22 Jul 2009 21:08:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[bug]]></category>
		<category><![CDATA[IE 6]]></category>
		<category><![CDATA[radio button group]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=115</guid>
		<description><![CDATA[Ever tried to use the onChange event to catch a change of state in a radio button group? The following code works alright in Firefox, but not in Internet Explorer:


&#60;input type=&#34;radio&#34; name=&#34;options&#34; id=&#34;option1&#34; onChange=&#34;alert(&#039;option1&#039;)&#34;&#62;
&#60;input type=&#34;radio&#34; name=&#34;options&#34; id=&#34;option2&#34; onChange=&#34;alert(&#039;option2&#039;)&#34;&#62;

IE treats the onChange event in a different manner: it recognizes something changed just after you lose focus [...]]]></description>
			<content:encoded><![CDATA[<p>Ever tried to use the onChange event to catch a change of state in a radio button group? The following code works alright in Firefox, but not in <strong>Internet Explorer</strong>:</p>
<pre class="brush: javascript">

&lt;input type=&quot;radio&quot; name=&quot;options&quot; id=&quot;option1&quot; onChange=&quot;alert(&#039;option1&#039;)&quot;&gt;
&lt;input type=&quot;radio&quot; name=&quot;options&quot; id=&quot;option2&quot; onChange=&quot;alert(&#039;option2&#039;)&quot;&gt;
</pre>
<p>IE treats the onChange event in a different manner: it recognizes something changed just after you lose focus on that element. The solution for this problem is to use the <strong>onClick javascript event</strong> instead of <strong>onChange</strong>.</p>
<pre class="brush: javascript">

&lt;input type=&quot;radio&quot; name=&quot;options&quot; id=&quot;option1&quot; onClick=&quot;alert(&#039;option1&#039;)&quot;&gt;
&lt;input type=&quot;radio&quot; name=&quot;options&quot; id=&quot;option2&quot; onClick=&quot;alert(&#039;option2&#039;)&quot;&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/onchange-internet-explorer-bug/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Wave responsible for IE 6 support drop</title>
		<link>http://thecssbug.com/google-wave-responsible-for-ie-6-support-drop</link>
		<comments>http://thecssbug.com/google-wave-responsible-for-ie-6-support-drop#comments</comments>
		<pubDate>Wed, 22 Jul 2009 20:36:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Google Wave]]></category>
		<category><![CDATA[html 5]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=113</guid>
		<description><![CDATA[As I&#8217;ve wrote earlier this week, Google is leading a silent battle against Internet Explorer 6, the 7 year-old browser that is still causing tons of problems to web developers. A first major step, was the announcement that YouTube is no longer supporting IE6, which was more of a statement then a strategic decision &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p>As I&#8217;ve wrote earlier this week, Google is leading a silent battle against Internet Explorer 6, the 7 year-old browser that is still causing tons of problems to web developers. A first major step, was the announcement that<a href="http://thecssbug.com/youtube-drops-support-for-ie6"> YouTube is no longer supporting IE6</a>, which was more of a statement then a strategic decision &#8211; since most of YouTube features will probably still work for time to come.</p>
<p>More likely the stake, must be the recently announced Google Wave, the most anticipated web application of the year which is packed with state-of-the-art HTML 5 technologies &#8211; some of them not fully supported even by the latest version of browsers (like drag-and-drop), and which Google is trying to sqeeze into the HTML 5 specifications. It is clear that  Google Wave is not likely to work with the age-old Internet Explorer 6, so Google is doing his best to determine users to upgrade to Chrome or some other latest generation browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/google-wave-responsible-for-ie-6-support-drop/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>YouTube drops Support for IE6</title>
		<link>http://thecssbug.com/youtube-drops-support-for-ie6</link>
		<comments>http://thecssbug.com/youtube-drops-support-for-ie6#comments</comments>
		<pubDate>Tue, 21 Jul 2009 09:56:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[ie6]]></category>
		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=109</guid>
		<description><![CDATA[It looks like the end is finally ariving for our least favorite browser IE6 as SitePoint announces. It’s survived longer than any of us could have expected and it still has a larger market share than Chrome, Safari, and Opera combined. Whilst some smaller web sites have dropped support for the 8 year-old browser, none [...]]]></description>
			<content:encoded><![CDATA[<p>It looks like the end is finally ariving for our least favorite browser IE6 as <a href="http://www.sitepoint.com/blogs/2009/07/20/youtube-drop-ie6/">SitePoint announces</a>. It’s survived longer than any of us could have expected and it still has a larger market share than Chrome, Safari, and Opera combined. Whilst some smaller web sites have dropped support for the 8 year-old browser, none of the bigger companies dared cut off a fifth of their users. Until now.</p>
<p>YouTube, the Google-owned video sharing web site, is phasing out IE6 support. YouTube is one of the largest and most popular web sites on the net, so this action could have a massive impact on user numbers.</p>
<p>IE5.5 and IE6 visitors to YouTube are now confronted with a message and helpful IE8, Firefox and Chrome download links.</p>
<p>There is some evidence that IE usage has dropped within the past month, although the new releases of Firefox and Safari are partially responsible for that shift. However, the YouTube announcement could certainly persuade many private IE6 users to upgrade their browser.</p>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/youtube-drops-support-for-ie6/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What&#8217;s new in Forefox 3.5</title>
		<link>http://thecssbug.com/whats-new-in-forefox-35</link>
		<comments>http://thecssbug.com/whats-new-in-forefox-35#comments</comments>
		<pubDate>Mon, 13 Jul 2009 22:05:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[html 5]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=107</guid>
		<description><![CDATA[Firefox 3.5 is a pretty substantial update to the popular open-source browser, and it&#8217;s just around the corner. See what features, fixes, and clever new tools are worth getting excited about in the next big release.
10. Undo closed window
9. Forget this site
8. Tab tearing
7. Keyword AwesomeBar filters
6. Smarter session restore
5. Private browsing mode
4. Color profiles [...]]]></description>
			<content:encoded><![CDATA[<p><a title="Click here to read more posts tagged FIREFOX 3.5" href="http://lifehacker.com/tag/firefox-3%275/" target="_blank">Firefox 3.5</a> is a pretty substantial update to the popular open-source browser, and it&#8217;s just around the corner. See what features, fixes, and clever new tools are worth getting excited about in the next big release.</p>
<p>10. Undo closed window<br />
9. Forget this site<br />
8. Tab tearing<br />
7. Keyword AwesomeBar filters<br />
6. Smarter session restore<br />
5. Private browsing mode<br />
4. Color profiles that pop<br />
3. TraceMonkey JavaScript engine<br />
2. Geo-location<br />
1. Video superpowers with HTML 5</p>
<p><a href="http://lifehacker.com/5295655/top-10-firefox-35-features">from LifeHacker</a></p>
<p><em></em></p>
<h3 style="font-size: 120%; margin-top: 20px;"><em></em></h3>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/whats-new-in-forefox-35/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>Javascript lose focus</title>
		<link>http://thecssbug.com/javascript-lose-focus</link>
		<comments>http://thecssbug.com/javascript-lose-focus#comments</comments>
		<pubDate>Fri, 03 Jul 2009 11:19:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Html]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[onBlur]]></category>
		<category><![CDATA[validation]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=97</guid>
		<description><![CDATA[How to validate a textfield using the javascript on lose focus event]]></description>
			<content:encoded><![CDATA[<p>When making fancy web 2.0<strong> javascript form validations</strong>, sometimes you may want to validate a html textfield right after the data was entered. What you need is to cacth the &#8216;<em>textfield lose focus&#8217; event</em>&#8216;, that is when a user enters some data into the textfield and then either clicks outside the field or &#8216;tabs&#8217; to the next field.</p>
<p>The JavaScript lose focus event is actually called <strong>onBlur</strong>, and is suppoerted by the following HTML tags:</p>
<pre class="brush: html">

&lt;a&gt;, &lt;acronym&gt;, &lt;address&gt;, &lt;area&gt;, &lt;b&gt;, &lt;bdo&gt;, &lt;big&gt;, &lt;blockquote&gt;,
&lt;button&gt;, &lt;caption&gt;, &lt;cite&gt;, &lt;dd&gt;, &lt;del&gt;, &lt;dfn&gt;, &lt;div&gt;, &lt;dl&gt;,
&lt;dt&gt;, &lt;em&gt;, &lt;fieldset&gt;, &lt;form&gt;, &lt;frame&gt;, &lt;frameset&gt;, &lt;h1&gt; to &lt;h6&gt;,
&lt;hr&gt;, &lt;i&gt;, &lt;iframe&gt;, &lt;img&gt;, &lt;input&gt;, &lt;ins&gt;, &lt;kbd&gt;, &lt;label&gt;,
&lt;legend&gt;, &lt;li&gt;, &lt;object&gt;, &lt;ol&gt;, &lt;p&gt;, &lt;pre&gt;, &lt;q&gt;, &lt;samp&gt;,
&lt;select&gt;, &lt;small&gt;, &lt;span&gt;, &lt;strong&gt;, &lt;sub&gt;, &lt;sup&gt;, &lt;table&gt;, &lt;tbody&gt;,
&lt;td&gt;, &lt;textarea&gt;, &lt;tfoot&gt;, &lt;th&gt;, &lt;thead&gt;, &lt;tr&gt;, &lt;tt&gt;, &lt;ul&gt;, &lt;var&gt;
</pre>
<p>and the following JavaScript objects:</p>
<pre class="brush: javascript">

button, checkbox, fileUpload, layer, frame, password, radio, reset, submit,
text, textarea, window
</pre>
<p>Usage example:</p>
<pre class="brush: html">

&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
function upperCase()
{
var x=document.getElementById(&quot;fname&quot;).value;
document.getElementById(&quot;fname&quot;).value=x.toUpperCase();
}
&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;

Enter your name:
&lt;input type=&quot;text&quot; id=&quot;fname&quot; onblur=&quot;upperCase()&quot;&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/javascript-lose-focus/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>Flash on top of lightbox</title>
		<link>http://thecssbug.com/flash-on-top-of-lightbox</link>
		<comments>http://thecssbug.com/flash-on-top-of-lightbox#comments</comments>
		<pubDate>Sat, 02 May 2009 00:16:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Html]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[embeded]]></category>
		<category><![CDATA[lightbox]]></category>
		<category><![CDATA[wmode]]></category>

		<guid isPermaLink="false">http://thecssbug.com/?p=83</guid>
		<description><![CDATA[Many of us are using a lightbox library for nice looking photo galleries, either on a blog or some other kind of website. When using a flash menu, or banner, on the same page usualy the flash gets on top of the image in the lightbox, creating a nasty looking effect.
A Flash movie in a [...]]]></description>
			<content:encoded><![CDATA[<p>Many of us are using a <strong>lightbox</strong> library for nice looking photo galleries, either on a blog or some other kind of website. When using a <strong>flash</strong> menu, or banner, on the same page usualy the <strong>flash</strong> gets on top of the image in the<strong> lightbox</strong>, creating a nasty looking effect.</p>
<p>A <strong>Flash movie</strong> in a layer on a DHTML page containing several layers may display above all the layers, regardless of the stacking order (&#8220;z-index&#8221;) of those layers. By default, browsers place embedded plug-in content, such as a Flash movie or Java applet, on the topmost layer.</p>
<p>In orderto to allow layering of Flash content with DHTML layers use the <strong>WMODE</strong> parameter . The WMODE parameter can be &#8216;window&#8217; (default), &#8216;opaque&#8217;, or &#8216;transparent&#8217;. Using a WMODE value of &#8216;opaque&#8217; or &#8216;transparent&#8217; will prevent a Flash movie from playing in the topmost layer and allow you to adjust the layering of the movie within other layers of the HTML document.</p>
<p>To edit an existing HTML page, add the WMODE parameters to the HTML code.</p>
<p>Add the following parameter to the OBJECT tag:</p>
<pre class="brush: html">
&lt;param name=&quot;wmode&quot; value=&quot;opaque&quot;&gt;
</pre>
<p>Add the following parameter to the EMBED tag:</p>
<pre class="brush: html">

wmode=&quot;opaque&quot;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://thecssbug.com/flash-on-top-of-lightbox/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>
