<?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: HTML for Icon Font Usage</title>
	<atom:link href="http://css-tricks.com/html-for-icon-font-usage/feed/" rel="self" type="application/rss+xml" />
	<link>http://css-tricks.com/html-for-icon-font-usage/</link>
	<description>Tips, Tricks, and Techniques on using Cascading Style Sheets.</description>
	<lastBuildDate>Wed, 19 Jun 2013 19:05:32 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: Derek Erb</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-182112</link>
		<dc:creator>Derek Erb</dc:creator>
		<pubDate>Thu, 19 Jul 2012 13:39:30 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-182112</guid>
		<description><![CDATA[I haven&#039;t tried this yet. But I just wanted to add that I certainly prefer being able to define the content in the style sheet rather than in the HTML. As my CSS files are always external this allows me to manage and modify the icon info without touching the HTML pages. If I have an icon in a menu, for example, then I would have to change each HTML page (data-icon=) instead of just changing the CSS file.

Many thanks!]]></description>
		<content:encoded><![CDATA[<p>I haven&#8217;t tried this yet. But I just wanted to add that I certainly prefer being able to define the content in the style sheet rather than in the HTML. As my CSS files are always external this allows me to manage and modify the icon info without touching the HTML pages. If I have an icon in a menu, for example, then I would have to change each HTML page (data-icon=) instead of just changing the CSS file.</p>
<p>Many thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Cheesman</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-179822</link>
		<dc:creator>John Cheesman</dc:creator>
		<pubDate>Mon, 02 Jul 2012 19:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-179822</guid>
		<description><![CDATA[Great article, I&#039;m using Ico Moon app for a site I&#039;m working on. I&#039;m having trouble replacing the button on my search form with a suitable icon as I can&#039;t nest spans inside it. Is there a way around this without positioning things on top of each other?]]></description>
		<content:encoded><![CDATA[<p>Great article, I&#8217;m using Ico Moon app for a site I&#8217;m working on. I&#8217;m having trouble replacing the button on my search form with a suitable icon as I can&#8217;t nest spans inside it. Is there a way around this without positioning things on top of each other?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Keyamoon</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-175224</link>
		<dc:creator>Keyamoon</dc:creator>
		<pubDate>Thu, 07 Jun 2012 14:46:14 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-175224</guid>
		<description><![CDATA[I use H5BP&#039;s visuallyhidden class:
&lt;pre&gt;&lt;code&gt;
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0); height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
&lt;/code&gt;&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>I use H5BP&#8217;s visuallyhidden class:</p>
<pre><code>
.visuallyhidden {
	border: 0;
	clip: rect(0 0 0 0); height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}
</code></pre>
]]></content:encoded>
	</item>
	<item>
		<title>By: Torkil Johnsen</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-174902</link>
		<dc:creator>Torkil Johnsen</dc:creator>
		<pubDate>Wed, 06 Jun 2012 07:48:12 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-174902</guid>
		<description><![CDATA[Great links to those font-tools :)

Didn&#039;t we decide that -9999px was a bad idea, because of browsers having to render a 10000px+ container?

Referring to this:

.screen-reader-text { /* Reusable, toolbox kind of class */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

Seems like perhaps it could be replaced by this:
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/

For Compass users, there&#039;s also useful stuff here:
http://compass-style.org/reference/compass/typography/text/replacement/

And if you swear to using sprites:
http://compass-style.org/reference/compass/utilities/sprites/sprite_img/#mixin-sprite-replace-text-with-dimensions]]></description>
		<content:encoded><![CDATA[<p>Great links to those font-tools :)</p>
<p>Didn&#8217;t we decide that -9999px was a bad idea, because of browsers having to render a 10000px+ container?</p>
<p>Referring to this:</p>
<p>.screen-reader-text { /* Reusable, toolbox kind of class */<br />
  position: absolute;<br />
  top: -9999px;<br />
  left: -9999px;<br />
}</p>
<p>Seems like perhaps it could be replaced by this:<br />
.hide-text {<br />
  text-indent: 100%;<br />
  white-space: nowrap;<br />
  overflow: hidden;<br />
}<br />
<a href="http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/" rel="nofollow">http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/</a></p>
<p>For Compass users, there&#8217;s also useful stuff here:<br />
<a href="http://compass-style.org/reference/compass/typography/text/replacement/" rel="nofollow">http://compass-style.org/reference/compass/typography/text/replacement/</a></p>
<p>And if you swear to using sprites:<br />
<a href="http://compass-style.org/reference/compass/utilities/sprites/sprite_img/#mixin-sprite-replace-text-with-dimensions" rel="nofollow">http://compass-style.org/reference/compass/utilities/sprites/sprite_img/#mixin-sprite-replace-text-with-dimensions</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Kaneda</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-174861</link>
		<dc:creator>David Kaneda</dc:creator>
		<pubDate>Wed, 06 Jun 2012 01:54:43 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-174861</guid>
		<description><![CDATA[It would appear the Icomoon fonts are hinted against 16 and 32px sizes at least... See the text justification and page-type icons for the clearest example.

Great article Chris!]]></description>
		<content:encoded><![CDATA[<p>It would appear the Icomoon fonts are hinted against 16 and 32px sizes at least&#8230; See the text justification and page-type icons for the clearest example.</p>
<p>Great article Chris!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben Peck</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-174809</link>
		<dc:creator>Ben Peck</dc:creator>
		<pubDate>Tue, 05 Jun 2012 19:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-174809</guid>
		<description><![CDATA[I&#039;ve been in the same boat.  I&#039;ve used them with image generation tools before CSS could handle font embedding, etc. 

I&#039;ve made a list of my favorite ones to date.  If anyone knows of more please let me know. http://www.bentdesignstudio.com/v2/2012/05/icon-fonts/]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve been in the same boat.  I&#8217;ve used them with image generation tools before CSS could handle font embedding, etc. </p>
<p>I&#8217;ve made a list of my favorite ones to date.  If anyone knows of more please let me know. <a href="http://www.bentdesignstudio.com/v2/2012/05/icon-fonts/" rel="nofollow">http://www.bentdesignstudio.com/v2/2012/05/icon-fonts/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andy Dentone</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-173977</link>
		<dc:creator>Andy Dentone</dc:creator>
		<pubDate>Fri, 01 Jun 2012 17:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-173977</guid>
		<description><![CDATA[Chris,
This is a great article, and I just used it to create some great buttons for a client.  Being able to scale, adjust color, and otherwise control the aspects of the icons is very, very powerful.   I was reluctant to try this before because I didn&#039;t want to sacrifice accessibility, but now, with your help, I don&#039;t have to worry.

My client loved the fact that the icon moves a little on hover - I used a simple, quick transition for that.  It is the little things that make a site so much more engaging.

Thanks again!
Also, thanks commenters and community - your thoughts and insights are greatly appreciated as well.]]></description>
		<content:encoded><![CDATA[<p>Chris,<br />
This is a great article, and I just used it to create some great buttons for a client.  Being able to scale, adjust color, and otherwise control the aspects of the icons is very, very powerful.   I was reluctant to try this before because I didn&#8217;t want to sacrifice accessibility, but now, with your help, I don&#8217;t have to worry.</p>
<p>My client loved the fact that the icon moves a little on hover &#8211; I used a simple, quick transition for that.  It is the little things that make a site so much more engaging.</p>
<p>Thanks again!<br />
Also, thanks commenters and community &#8211; your thoughts and insights are greatly appreciated as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Carsten</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-173880</link>
		<dc:creator>Carsten</dc:creator>
		<pubDate>Fri, 01 Jun 2012 09:00:45 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-173880</guid>
		<description><![CDATA[Thanks Keyamoon, your font generator works fine on every browser and every platform with the PUA encoding.]]></description>
		<content:encoded><![CDATA[<p>Thanks Keyamoon, your font generator works fine on every browser and every platform with the PUA encoding.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brannon</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-173768</link>
		<dc:creator>Brannon</dc:creator>
		<pubDate>Thu, 31 May 2012 20:27:38 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-173768</guid>
		<description><![CDATA[Have you tried it in webkit nightlies? Maybe it will be supported in Safari 5.2 PC.]]></description>
		<content:encoded><![CDATA[<p>Have you tried it in webkit nightlies? Maybe it will be supported in Safari 5.2 PC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joeri</title>
		<link>http://css-tricks.com/html-for-icon-font-usage/#comment-173336</link>
		<dc:creator>Joeri</dc:creator>
		<pubDate>Tue, 29 May 2012 22:25:17 +0000</pubDate>
		<guid isPermaLink="false">http://css-tricks.com/?p=17028#comment-173336</guid>
		<description><![CDATA[Funnily enough, the things you do to optimize for screen readers are, in most cases, also good practice in general.]]></description>
		<content:encoded><![CDATA[<p>Funnily enough, the things you do to optimize for screen readers are, in most cases, also good practice in general.</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 (User agent is rejected)
Content Delivery Network via cdn.css-tricks.com

 Served from: css-tricks.com @ 2013-06-19 12:48:47 by W3 Total Cache -->