<?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"
	>
<channel>
	<title>Comments on: overcoming poor browser support for CSS3 input[type]</title>
	<atom:link href="http://www.afhill.com/blog/2006/09/26/overcoming-poor-browser-support-for-css3-inputtype/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.afhill.com/blog/2006/09/26/overcoming-poor-browser-support-for-css3-inputtype/</link>
	<description>Accessibility, Social Media, Online Branding, User-Centered Design -- Web Development isn't all about code anymore!</description>
	<pubDate>Fri, 05 Dec 2008 02:28:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Nowell</title>
		<link>http://www.afhill.com/blog/2006/09/26/overcoming-poor-browser-support-for-css3-inputtype/#comment-20233</link>
		<dc:creator>Nowell</dc:creator>
		<pubDate>Thu, 08 May 2008 14:46:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.afhill.com/blog/2006/09/26/overcoming-poor-browser-support-for-css3-inputtype/#comment-20233</guid>
		<description>You can match attributes and attribute values in css to only apply styles to specific elements.

The reference is REC-CSS2-19980512 section 5.8.1

I use this to display an image in front of links that deosn't contain wiki.pl in the href.

.wikitext a:before {
     content: url("/images/remote.gif");
}
.wikitext a[href*="wiki.pl"]:before {
     content: "";
}

As to adding padding to a button"

input[type="button"] {
/* add 1em of space to the left of the button text */
     padding-left: 1em;
/* add 1em of space th the left of the button */
     margin-left: 1em;
}

hth
Nowell</description>
		<content:encoded><![CDATA[<p>You can match attributes and attribute values in css to only apply styles to specific elements.</p>
<p>The reference is REC-CSS2-19980512 section 5.8.1</p>
<p>I use this to display an image in front of links that deosn&#8217;t contain wiki.pl in the href.</p>
<p>.wikitext a:before {<br />
     content: url(&#8221;/images/remote.gif&#8221;);<br />
}<br />
.wikitext a[href*="wiki.pl"]:before {<br />
     content: &#8220;&#8221;;<br />
}</p>
<p>As to adding padding to a button&#8221;</p>
<p>input[type="button"] {<br />
/* add 1em of space to the left of the button text */<br />
     padding-left: 1em;<br />
/* add 1em of space th the left of the button */<br />
     margin-left: 1em;<br />
}</p>
<p>hth<br />
Nowell</p>
]]></content:encoded>
	</item>
</channel>
</rss>
