<?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: The Skinny on CSS Attribute Selectors</title>
	<atom:link href="http://css-tricks.com/attribute-selectors/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/attribute-selectors/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Thu, 23 May 2013 11:43:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Ben Williams</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-74409</link>
		<dc:creator>Ben Williams</dc:creator>
		<pubDate>Tue, 13 Apr 2010 17:19:02 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-74409</guid>
		<description><![CDATA[It&#039;s not working for me in internet explorer 7. I&#039;m working on a site where we&#039;re have lots of logos displayed for informational purposes.  One of the logo owners want&#039;s theirs taken down until we get licensing.  So instead of re-writing back end code, I tried this to remove the logo for this case only.

div.foo .bar[style*=xyz] {
	background-image:none !important;	
}

Does not remove the background image in IE7.  I have to use !important because it&#039;s an inline style that adds the background (I know that&#039;s not separating content from style, but worked better this way for programming).]]></description>
		<content:encoded><![CDATA[<p>It&#8217;s not working for me in internet explorer 7. I&#8217;m working on a site where we&#8217;re have lots of logos displayed for informational purposes.  One of the logo owners want&#8217;s theirs taken down until we get licensing.  So instead of re-writing back end code, I tried this to remove the logo for this case only.</p>
<p>div.foo .bar[style*=xyz] {<br />
	background-image:none !important;<br />
}</p>
<p>Does not remove the background image in IE7.  I have to use !important because it&#8217;s an inline style that adds the background (I know that&#8217;s not separating content from style, but worked better this way for programming).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc Deschamps</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-73162</link>
		<dc:creator>Marc Deschamps</dc:creator>
		<pubDate>Sat, 20 Mar 2010 15:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-73162</guid>
		<description><![CDATA[Excellent post, i searched alot for an example of

&lt;code&gt;a:not([href ^=http://my.domain.com])&lt;/code&gt; !
Knew something more elegant existed, and finally found the answer, and alot more here :-)]]></description>
		<content:encoded><![CDATA[<p>Excellent post, i searched alot for an example of</p>
<p><code>a:not([href ^=http://my.domain.com])</code> !<br />
Knew something more elegant existed, and finally found the answer, and alot more here :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sean</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-73122</link>
		<dc:creator>Sean</dc:creator>
		<pubDate>Fri, 19 Mar 2010 18:16:11 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-73122</guid>
		<description><![CDATA[Actually, I just though of using this to automatically put some margin around images that I am aligning right or left.

For example:

&lt;code&gt;&lt;img align=&quot;right&quot; src=&quot;whatever.jpg&quot; /&gt;&lt;/code&gt;

And then using CSS attribute selector:

&lt;code&gt;img[align=right] { margin-left:10px; }&lt;/code&gt;

This gets me over what has always given me heartburn: users floating pictures using align, but not adding the appropriate class to ensure margin is added.]]></description>
		<content:encoded><![CDATA[<p>Actually, I just though of using this to automatically put some margin around images that I am aligning right or left.</p>
<p>For example:</p>
<p><code>&lt;img align="right" src="whatever.jpg" /></code></p>
<p>And then using CSS attribute selector:</p>
<p><code>img[align=right] { margin-left:10px; }</code></p>
<p>This gets me over what has always given me heartburn: users floating pictures using align, but not adding the appropriate class to ensure margin is added.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeremy</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-73071</link>
		<dc:creator>Jeremy</dc:creator>
		<pubDate>Fri, 19 Mar 2010 05:01:45 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-73071</guid>
		<description><![CDATA[I&#039;m guessing that&#039;s because you can&#039;t put the &#039;no-repeat&#039; in a background-image property.  Pretty sure Chris meant to put background, being that he included the no-repeat.

Hey Chris!  Awesome post!  I had no idea CSS was so versatile.

And it&#039;s also encouraging to see that even friggin&#039; genius get going to fast and type weird code :)

Keep it comin&#039;, man - I check your site everyday!]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m guessing that&#8217;s because you can&#8217;t put the &#8216;no-repeat&#8217; in a background-image property.  Pretty sure Chris meant to put background, being that he included the no-repeat.</p>
<p>Hey Chris!  Awesome post!  I had no idea CSS was so versatile.</p>
<p>And it&#8217;s also encouraging to see that even friggin&#8217; genius get going to fast and type weird code :)</p>
<p>Keep it comin&#8217;, man &#8211; I check your site everyday!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckn</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72824</link>
		<dc:creator>ckn</dc:creator>
		<pubDate>Tue, 16 Mar 2010 16:00:37 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72824</guid>
		<description><![CDATA[Thanks for that little snippet. I don&#039;t use it often but now use it and validate.]]></description>
		<content:encoded><![CDATA[<p>Thanks for that little snippet. I don&#8217;t use it often but now use it and validate.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: William Knight</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72750</link>
		<dc:creator>William Knight</dc:creator>
		<pubDate>Mon, 15 Mar 2010 21:10:12 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72750</guid>
		<description><![CDATA[Brilliant post Chris! It&#039;s always nice to learn something new at the start of my week!]]></description>
		<content:encoded><![CDATA[<p>Brilliant post Chris! It&#8217;s always nice to learn something new at the start of my week!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sigex</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72603</link>
		<dc:creator>sigex</dc:creator>
		<pubDate>Sun, 14 Mar 2010 05:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72603</guid>
		<description><![CDATA[That would be that a lot of people still use old browsers...]]></description>
		<content:encoded><![CDATA[<p>That would be that a lot of people still use old browsers&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: luca</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72299</link>
		<dc:creator>luca</dc:creator>
		<pubDate>Thu, 11 Mar 2010 10:32:17 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72299</guid>
		<description><![CDATA[Really really helpful, especially with the auto generated class in wordpress (tag-link-1,tag-link-2,tag-link-7 .. ).  Awesome. Thanks a lot!]]></description>
		<content:encoded><![CDATA[<p>Really really helpful, especially with the auto generated class in wordpress (tag-link-1,tag-link-2,tag-link-7 .. ).  Awesome. Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joseph McCullough</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72268</link>
		<dc:creator>Joseph McCullough</dc:creator>
		<pubDate>Wed, 10 Mar 2010 17:25:45 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72268</guid>
		<description><![CDATA[I didn&#039;t know anything about this. This is awesome, especially for input. I&#039;ve been making .text and .button classes for  my input, extremely annoying.  This makes much more sense, thank you very much!]]></description>
		<content:encoded><![CDATA[<p>I didn&#8217;t know anything about this. This is awesome, especially for input. I&#8217;ve been making .text and .button classes for  my input, extremely annoying.  This makes much more sense, thank you very much!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ximi</title>
		<link>http://css-tricks.com/attribute-selectors/#comment-72105</link>
		<dc:creator>ximi</dc:creator>
		<pubDate>Mon, 08 Mar 2010 09:44:55 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=5591#comment-72105</guid>
		<description><![CDATA[I had a basic knowledge of attribute selectors, but I didn&#039;t know that it was that extensive. This was very informative and will definitely come in handy in the future...]]></description>
		<content:encoded><![CDATA[<p>I had a basic knowledge of attribute selectors, but I didn&#8217;t know that it was that extensive. This was very informative and will definitely come in handy in the future&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-05-23 05:02:27 by W3 Total Cache -->