<?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: CSS line-height property</title>
	<atom:link href="http://ifyoucodeittheywill.com/2009/05/css-line-height-property/feed/" rel="self" type="application/rss+xml" />
	<link>http://ifyoucodeittheywill.com/2009/05/css-line-height-property/</link>
	<description>xHTML and CSS made simple.</description>
	<lastBuildDate>Fri, 12 Mar 2010 12:18:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Lesa</title>
		<link>http://ifyoucodeittheywill.com/2009/05/css-line-height-property/comment-page-1/#comment-146</link>
		<dc:creator>Lesa</dc:creator>
		<pubDate>Mon, 11 May 2009 23:16:40 +0000</pubDate>
		<guid isPermaLink="false">http://ifyoucodeittheywill.com/?p=816#comment-146</guid>
		<description>I don&#039;t know anyone who uses &#039;ex&#039; measurements, and for good reason.  They&#039;re just too inconsistent from font to font, and I don&#039;t know why it was even invented in the first place.

As for &lt;sup&gt; and &lt;sub&gt;, why not just style the &lt;sup&gt; and &lt;sub&gt; tags themselves, instead of creating class names? &lt;sup&gt; and &lt;sub&gt; aren&#039;t just used for visual presentation. They actually &lt;em&gt;mean&lt;/em&gt; something, so the proper coding technique is to use those tags when you are denoting superscript and subscript. How would artificial intelligence know the difference between H&lt;sub&gt;2&lt;/sub&gt;O and H2O, if the 2 doesn&#039;t have the specific markup that classifies it as subscript?</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know anyone who uses &#8216;ex&#8217; measurements, and for good reason.  They&#8217;re just too inconsistent from font to font, and I don&#8217;t know why it was even invented in the first place.</p>
<p>As for &lt;sup&gt; and &lt;sub&gt;, why not just style the &lt;sup&gt; and &lt;sub&gt; tags themselves, instead of creating class names? &lt;sup&gt; and &lt;sub&gt; aren&#8217;t just used for visual presentation. They actually <em>mean</em> something, so the proper coding technique is to use those tags when you are denoting superscript and subscript. How would artificial intelligence know the difference between H<sub>2</sub>O and H2O, if the 2 doesn&#8217;t have the specific markup that classifies it as subscript?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pastor rick</title>
		<link>http://ifyoucodeittheywill.com/2009/05/css-line-height-property/comment-page-1/#comment-145</link>
		<dc:creator>pastor rick</dc:creator>
		<pubDate>Mon, 11 May 2009 05:32:38 +0000</pubDate>
		<guid isPermaLink="false">http://ifyoucodeittheywill.com/?p=816#comment-145</guid>
		<description>The em is the height of the letter M&#039;s font while the ex is the height of the letter x&#039;s font. The results can prove very dramatic (width-wise) in the box model depending on which font (or font family) is being used by the site.

The (x)HTML tags are good if being used for fixed mark-ups limited to superscripts 1, 2 and 3 but some browsers will not recognize superscripts beyond that which makes it much easier to create the CSS class using the ex measurement to simulate the sup/sub-script like this:

.sup {vertical-align:0;position:relative;bottom:1.2ex;font-style:normal;font-size:65%;}

instead of fighting the HTML code with hacks to simulate the effect (especially with mathematical formulas)...</description>
		<content:encoded><![CDATA[<p>The em is the height of the letter M&#8217;s font while the ex is the height of the letter x&#8217;s font. The results can prove very dramatic (width-wise) in the box model depending on which font (or font family) is being used by the site.</p>
<p>The (x)HTML tags are good if being used for fixed mark-ups limited to superscripts 1, 2 and 3 but some browsers will not recognize superscripts beyond that which makes it much easier to create the CSS class using the ex measurement to simulate the sup/sub-script like this:</p>
<p>.sup {vertical-align:0;position:relative;bottom:1.2ex;font-style:normal;font-size:65%;}</p>
<p>instead of fighting the HTML code with hacks to simulate the effect (especially with mathematical formulas)&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lesa</title>
		<link>http://ifyoucodeittheywill.com/2009/05/css-line-height-property/comment-page-1/#comment-144</link>
		<dc:creator>Lesa</dc:creator>
		<pubDate>Sun, 10 May 2009 19:32:30 +0000</pubDate>
		<guid isPermaLink="false">http://ifyoucodeittheywill.com/?p=816#comment-144</guid>
		<description>I&#039;m sorry, you lost me there. The ex?

The (x)HTML tags &lt;sup&gt; and &lt;sub&gt; are used for superscript and subscript.</description>
		<content:encoded><![CDATA[<p>I&#8217;m sorry, you lost me there. The ex?</p>
<p>The (x)HTML tags &lt;sup&gt; and &lt;sub&gt; are used for superscript and subscript.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pastor rick</title>
		<link>http://ifyoucodeittheywill.com/2009/05/css-line-height-property/comment-page-1/#comment-142</link>
		<dc:creator>pastor rick</dc:creator>
		<pubDate>Sun, 10 May 2009 03:48:50 +0000</pubDate>
		<guid isPermaLink="false">http://ifyoucodeittheywill.com/?p=816#comment-142</guid>
		<description>Hey, you forgot the ex! The only thing it is good for (imho) is moving/styling text above and below the normal line-height to create super/sub-scripts but still...</description>
		<content:encoded><![CDATA[<p>Hey, you forgot the ex! The only thing it is good for (imho) is moving/styling text above and below the normal line-height to create super/sub-scripts but still&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
