<?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>Pencils Down &#187; CSS</title>
	<atom:link href="http://www.dantoomeysoftware.com/pencils-down/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dantoomeysoftware.com/pencils-down</link>
	<description>This weblog is about my experiences in software development</description>
	<lastBuildDate>Fri, 27 Jan 2012 13:43:51 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Help for Web Programmers at the Mercy of Designer Fonts</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 13:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=282</guid>
		<description><![CDATA[Working with a client where the designer they hired produced a nice looking design.  However, even though promising to just use standard fonts there are a couple of very conspicuous parts of the design that use non-standard fonts.  Sound familiar?
Google to the rescue! (I don&#8217;t know how they control what people spend time/money developing)  I [...]]]></description>
			<content:encoded><![CDATA[<p>Working with a client where the designer they hired produced a nice looking design.  However, even though promising to just use standard fonts there are a couple of very conspicuous parts of the design that use non-standard fonts.  Sound familiar?</p>
<p>Google to the rescue! (I don&#8217;t know how they control what people spend time/money developing)  I saw a reference to <a href="https://developers.google.com/webfonts/">Google Fonts</a> in a <a href="http://news.ycombinator.com/">HN </a>post the other day.  What&#8217;s that?</p>
<blockquote><p>Google Web Fonts provides high-quality web fonts that you can include in your pages using the Google Web Fonts API.</p></blockquote>
<p>Just like everything else you can use google for, (especially CDN access to includes and the like) you can make reference to some non-standard font in the Google font set and then use it pretty much like any other font in CSS (have to quote the font name versus plain text(=standard font)).  Again, with their simple example:</p>
<p>&lt;html&gt;</p>
<p>&lt;head&gt;</p>
<p><span style="color: #ff9900;">&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;http://fonts.googleapis.com/css?family=Tangerine&#8221;&gt;</span></p>
<p>&lt;style&gt;</p>
<p>body {</p>
<p>font-family:<span style="color: #ff9900;"> &#8216;Tangerine&#8217;,</span> serif;</p>
<p>font-size: 48px;</p>
<p>}</p>
<p>&lt;/style&gt;</p>
<p>&lt;/head&gt;</p>
<p>&lt;body&gt;</p>
<p>&lt;div&gt;Making the Web Beautiful!&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p>So, next time you are graced with a design present you can just smile.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/27/help-for-web-programmers-at-the-mercy-of-designer-fonts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally, Rounded Tabs Without Using Images</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 14:00:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=277</guid>
		<description><![CDATA[Someone smart figured out a way to get rounded corner tabs in HTML/CSS without using any images at css-tricks.com.  You can see an example at http://css-tricks.com/examples/RoundOutTabs2/.
Here is an image of the sample (note, the round outs at the bottom of the selected tab):

]]></description>
			<content:encoded><![CDATA[<p>Someone smart figured out a way to get rounded corner tabs in HTML/CSS without using any images at <a href="http://css-tricks.com">css-tricks.com</a>.  You can see an example at<a href="http://css-tricks.com/examples/RoundOutTabs2/"> http://css-tricks.com/examples/RoundOutTabs2/</a>.</p>
<p>Here is an image of the sample (note, the round <span style="text-decoration: underline;">outs </span>at the bottom of the selected tab):</p>
<p><a href="http://www.dantoomeysoftware.com/pencils-down/wp-content/uploads/2012/01/rounded-tabs.png"><img class="size-medium wp-image-279" title="rounded-tabs" src="http://www.dantoomeysoftware.com/pencils-down/wp-content/uploads/2012/01/rounded-tabs-300x43.png" alt="" width="300" height="43" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2012/01/13/finally-rounded-tabs-without-using-images/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Browser Addin to Tell You What Font is in Use</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 12:55:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Software Tools]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/?p=262</guid>
		<description><![CDATA[http://www.chengyinliu.com/whatfont.html
Simple: point and click
]]></description>
			<content:encoded><![CDATA[<p>http://www.chengyinliu.com/whatfont.html</p>
<p>Simple: point and click</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2011/10/31/browser-addin-to-tell-you-what-font-is-in-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Surprise: IE does a better job at CSS than FF</title>
		<link>http://www.dantoomeysoftware.com/pencils-down/2008/09/04/surprise-ie-does-a-better-job-at-css-than-ff/</link>
		<comments>http://www.dantoomeysoftware.com/pencils-down/2008/09/04/surprise-ie-does-a-better-job-at-css-than-ff/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 12:34:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.dantoomeysoftware.com/pencils-down/http:/www.dantoomeysoftware.com/pencils-down/category/post-name</guid>
		<description><![CDATA[I have been struggling on a Joomla site that started out with the quaint idea of table-less design.  If you read any of the jibberish out there the current web development thinking is that tables are passe&#8217; and css-only layout is the way to go.
Great idea.  Let me know when you find a browser that [...]]]></description>
			<content:encoded><![CDATA[<p>I have been struggling on a Joomla site that started out with the quaint idea of table-less design.  If you read any of the jibberish out there the current web development thinking is that tables are passe&#8217; and css-only layout is the way to go.</p>
<p>Great idea.  Let me know when you find a browser that does anything consistently. </p>
<p>Surprisingly, I have been finding that IE does a better job at layout than FF.  I guess this makes sense as IE accounts for all kinds of developer hacks whereas FF and the like take the high road: if you don&#8217;t follow the rules I quit.  However, the result is that IE appears to layout &#8216;better&#8217; than FF.  So, taking a noble approach really doesn&#8217;t work.  Yet another surprise, huh?</p>
<p>Some of the simple things that can be done easily with a table layout but can be done painfully using css: virtually any vertical spacing, being exact about width, ditto height.  These are not unusual features of a web page.  I think it&#8217;s great that the W3 committees get together and design really interesting features, but give me something that works, today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dantoomeysoftware.com/pencils-down/2008/09/04/surprise-ie-does-a-better-job-at-css-than-ff/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

