<?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>SimcoMedia Professional Web Design &#187; CSS Drop Cap</title>
	<atom:link href="http://www.simcomedia.com/tag/css-drop-cap/feed" rel="self" type="application/rss+xml" />
	<link>http://www.simcomedia.com</link>
	<description>Custom Web Designs And Ecommerce Specialists</description>
	<lastBuildDate>Sun, 08 Jan 2012 21:02:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS Drop Cap</title>
		<link>http://www.simcomedia.com/css-drop-cap</link>
		<comments>http://www.simcomedia.com/css-drop-cap#comments</comments>
		<pubDate>Tue, 02 Jun 2009 03:45:50 +0000</pubDate>
		<dc:creator>SimcoMedia Design</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS Drop Cap]]></category>

		<guid isPermaLink="false">http://www.simcomedia.com/?p=217</guid>
		<description><![CDATA[Here&#8217;s a couple of ways to create that cool looking extra large first letter of a paragraph using two different methods but both using CSS. You can do these either in line CSS or external CSS as an attached stylesheet. The &#60;span&#62; Method .firstletter { display:block; float:left; margin: -0.63em 0.5em 0 -0.56em; height : 4.5em; [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a couple of ways to create that cool looking extra large first letter of a paragraph using two different methods but both using CSS. You can do these either in line CSS or external CSS as an attached stylesheet.<span id="more-217"></span><br />
<br/><br/><br/><br />
<strong>The &lt;span&gt; Method</strong></p>
<div style="width: 450px;">
<pre class=brush:[css]>
.firstletter {
display:block;
float:left;
margin: -0.63em 0.5em 0 -0.56em;
height : 4.5em;
color:#aaa;
}

.firstletter span {
font-size:200%;
line-height:1.0em;
}
.firstletter + span{
margin-left  : -0.5em;
}
</pre>
</div>
<p>Using this in the HTML as follows:</p>
<div style="width: 450px;">
<pre class="brush:[html]">
&lt;span&gt;
&lt;span&gt;W&lt;/span&gt;
&lt;/span&gt;hen was the first time drop caps first letter introduced in newspaper, magazine?
But its been a quite while the trend of drop cap used in web business. First letter drop
cap can be achieved in many ways.
</pre>
</div>
<p><strong>The Pseudo Element Method</strong></p>
<div style="width: 450px;">
<pre class="brush:[css]">
p:first-letter {
font-size:400%;
display:block;
float:left;
margin: 0.06em 0 0;
height:3.5em;
color:#ccc;
}
</pre>
</div>
<p>This uses the little known :first-letter pseudo element that formats the first letter<br />
of the paragraph. Here’s how to apply the HTML:</p>
<p>&lt;p&gt;Type your sentence here and the first letter will be larger&lt;/p&gt;</p>
<p>Drop caps add some style to otherwise bland pages if done right.</p>
<p class="facebook"><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/css-drop-cap" target="_blank"><img src="http://www.simcomedia.com/wp-content/plugins/add-to-facebook-plugin/facebook_share_icon.gif" alt="Share on Facebook" title="Share on Facebook" /></a><a href="http://www.facebook.com/share.php?u=http://www.simcomedia.com/css-drop-cap" target="_blank" title="Share on Facebook">Share on Facebook</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.simcomedia.com/css-drop-cap/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

