<?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>Alex Mace's Blog &#187; button</title>
	<atom:link href="http://blog.alexmace.co.uk/tag/button/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.alexmace.co.uk</link>
	<description>Life &#38; Web Development</description>
	<lastBuildDate>Tue, 23 Mar 2010 21:34:53 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Styling buttons in Firefox</title>
		<link>http://blog.alexmace.co.uk/2009/02/05/styling-buttons-in-firefox/</link>
		<comments>http://blog.alexmace.co.uk/2009/02/05/styling-buttons-in-firefox/#comments</comments>
		<pubDate>Thu, 05 Feb 2009 12:14:58 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Web Dev]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Firefox]]></category>

		<guid isPermaLink="false">http://blog.alexmace.co.uk/?p=309</guid>
		<description><![CDATA[This is more of a note to remind me in future. Take this bit of HTML:
&#60;button&#62;&#60;span&#62;Save&#60;/span&#62;&#60;/button&#62;
If you set the button and the span to have padding: 0, Firefox will still show the button with some padding. You can get rid of this with the following CSS:
 button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

Sorted!
 
 
]]></description>
			<content:encoded><![CDATA[<p>This is more of a note to remind me in future. Take this bit of HTML:</p>
<p><code>&lt;button&gt;&lt;span&gt;Save&lt;/span&gt;&lt;/button&gt;</code></p>
<p>If you set the button and the span to have padding: 0, Firefox will still show the button with some padding. You can get rid of this with the following CSS:</p>
<p><code> button::-moz-focus-inner {<br />
    border: 0;<br />
    padding: 0;<br />
}<br />
</code></p>
<p>Sorted!<br />
 <br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.alexmace.co.uk/2009/02/05/styling-buttons-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
