<?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>Poetic Type</title>
	<atom:link href="http://www.poetictype.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.poetictype.com</link>
	<description>Websites, Logotypes, and Poetic Typesetting</description>
	<lastBuildDate>Fri, 04 Mar 2011 16:16:15 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Typography and Vertical Rhythm</title>
		<link>http://www.poetictype.com/css/css-typography-and-vertical-rhythm/</link>
		<comments>http://www.poetictype.com/css/css-typography-and-vertical-rhythm/#comments</comments>
		<pubDate>Thu, 26 Aug 2010 18:01:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.poetictype.com/?p=70</guid>
		<description><![CDATA[Relative to font-size i.e. proportional line-height]]></description>
			<content:encoded><![CDATA[<p>Relative to font-size i.e. proportional line-height</p>
<h4>About the <a href="http://www.poetictype.com/relative-vertical-baseline-calculator/">Relative Vertical-Baseline Calculator</a></h4>
<p>Set the base font size and line height </p>
<p>Select headings scale</p>
<table id="h-scales">
<thead>
<tr>
<th>Scales</th>
<th>Browser</th>
<th>Typographic</th>
</tr>
</thead>
<tbody class="code">
<tr>
<td>h1</td>
<td>2em</td>
<td>1.5em</td>
</tr>
<tr>
<td>h2</td>
<td>1.5em</td>
<td>1.334em</td>
</tr>
<tr>
<td>h3</td>
<td>1.167em</td>
<td>1.167em</td>
</tr>
<tr>
<td>h4</td>
<td>1em</td>
<td>1em</td>
</tr>
</tbody>
</table>
<p>
	You can decide whether you the <code>h1</code> heading&#8217;s bottom margin should match subheadings spacing
</p>
<p>Choose whether you want symmetrical subheadings spacing, which is the way most do it, or asymmetrical spacing where there is less space between the heading and the text. With asymmetrical spacing the heading&#8217;s relationship to the text that it references makes more sense, and because of that it&#8217;s aesthetically more pleasing.</p>
<p>
	For most web design uses the subheadings should have a zero <code>0</code> top margin. If you have a more article oriented design where you have headings and subheadings
</p>
<p><code><br />
html, body {<br />
	margin:0;padding:0;border:0;outline:0;font-size:100%;<br />
}<br />
</code></p>
<p>Zero out (i.e. Reset) main block-level elements, and set font size to 100% so that ems scale properly</p>
<p><code><br />
body {<br />
    font:12px/1.334 sans-serif;<br />
}<br />
</code></p>
<p>Contrary to the popular practice of setting the default body font size in percentages/ems we set the font size in pixels &mdash; hench the reason for setting font size in percentage above.<br />
	If the user sets their default font size to something other <code>16px</code> in the brower&#8217;s preferences then the whole percentage thing falls apart. Say they&#8217;ve set their default font size to <code>14</code>. If you then set the body font size to <code>75%</code> then you&#8217;re actually setting the font size to <code>10.5</code> and not to <code>12</code> as you intend.</p>
<p><code><br />
</code></p>
<p><code><br />
h1, h2, h3, h4 {<br />
	text-align:left;<br />
	line-height:1.0;<br />
}<br />
</code></p>
<p>Set headings line height to <code>1.0</code>* so that the baselines cascade properly (*The reason for using the decimal <code>1.0</code> instead of the integer <code>1</code> is because the CSS validator has been known to return errors when using integer unitless values)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.poetictype.com/css/css-typography-and-vertical-rhythm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Scoorge of Dreamweaver</title>
		<link>http://www.poetictype.com/design/the-scoorge-of-dreamweaver/</link>
		<comments>http://www.poetictype.com/design/the-scoorge-of-dreamweaver/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 14:01:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://localhost/poetictype/poetictype/?p=26</guid>
		<description><![CDATA[I see this CSS font stack declaration all the time font-family: Arial, Helvetica, sans-serif;. But what exactly is the point? In fact there is absolutely no point in declaring Arial, Helvetica, sans-serif as all Apple products have Arial installed. So no one &#8212; except maybe some UNIX user who happens to not have Arial installed]]></description>
			<content:encoded><![CDATA[<p>I see this CSS font stack declaration all the time <code>font-family: Arial, Helvetica, sans-serif;</code>. But what exactly is the point? In fact there is absolutely no point in declaring <code>Arial, Helvetica, sans-serif</code> as all Apple products have Arial installed. So no one &mdash; except maybe some UNIX user who happens to not have Arial installed but does happen to have Helvetica installed, or maybe some Mac user who has deinstalled Arial &mdash; will ever see Helvetica. The correct declaration should be <code>Helvetica, Arial, sans-serif</code>. <span id="more-26"></span></p>
<p>This is Dreamweaver&rsquo;s original default font stacks:</p>
<ul class="code-list">
<li>Arial, Helvetica, sans-serif</li>
<li>Times New Roman, Times, serif</li>
<li>Courier New, Courier, monospace</li>
<li>Georgia, Times New Roman, Times, serif</li>
<li>Verdana, Arial, Helvetica, sans-serif</li>
<li>Geneva, Arial, Helvetica, sans-serif</li>
</ul>
<p>And yes, this is a riff on Mark Simonson&rsquo;s <a href="http://www.ms-studio.com/articles.html">The Scourge of Arial</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.poetictype.com/design/the-scoorge-of-dreamweaver/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

