<?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>Bri Manning&#039;s Blog &#187; HTML/CSS</title>
	<atom:link href="http://brimanning.com/blog/category/html-css/feed" rel="self" type="application/rss+xml" />
	<link>http://brimanning.com/blog</link>
	<description>A Developnerd&#039;s Take on Being Awesome</description>
	<lastBuildDate>Thu, 19 Jan 2012 15:15:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Limitations of HTML5, or the Lack Thereof</title>
		<link>http://brimanning.com/blog/no-limitations-of-html5</link>
		<comments>http://brimanning.com/blog/no-limitations-of-html5#comments</comments>
		<pubDate>Wed, 08 Sep 2010 23:58:01 +0000</pubDate>
		<dc:creator>Brian Manning</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>

		<guid isPermaLink="false">http://brimanning.com/blog/?p=157</guid>
		<description><![CDATA[Adobe has a good reason to be worried in regards to Flash. Not only is it battling Apple, many developers are leaving it to pursue solutions that are standards; solutions that will work in many environments and on many devices.]]></description>
			<content:encoded><![CDATA[<p>I recently happened upon a <a href="http://dothatin.com/">challenge to recreate a button created in Flash in HTML5</a> via <a href="http://www.reddit.com/">reddit</a> (and actually via <a href="http://popurls.com/">popurls</a>). I was actually really excited because I wanted to practice some work using <a href="http://en.wikipedia.org/wiki/Canvas_element">HTML5&#8242;s canvas element</a>.</p>
<p>However, and <a href="http://mobdb.com/reddit/button.html">someone beat me to the punch</a> with their button.</p>
<p>Though I&#8217;m tempted to revisit the button creation (and I might in some downtime this weekend), I think the important part here is to realize that HTML5 is really the answer to a lot of problems. <a href="http://www.adobe.com/">Adobe</a> has a good reason to be worried in regards to Flash. Not only is it <a href="http://www.apple.com/hotnews/thoughts-on-flash/">battling Apple</a>, many developers are leaving it to pursue solutions that are standards; solutions that will work in many environments and on many devices.</p>
<p>Video, the biggest reason to use Flash, is being <a href="http://www.youtube.com/html5">phased out where it can be by the largest video site</a> out there, YouTube, in favor of HTML5. Granted, it is still in beta, but it is a sign of things to come.</p>
<p>Adobe, as a company, is by no means on fragile ground &#8211; they clearly have plenty of other products that corner their respective markets. However, it seems that Flash has had its day, and more and more, can be replaced with a combinations of HTML5, JavaScript and CSS. Now we just need to work for Microsoft to catch up with IE9&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://brimanning.com/blog/no-limitations-of-html5/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Styling Code Elements with CSS</title>
		<link>http://brimanning.com/blog/styling-code</link>
		<comments>http://brimanning.com/blog/styling-code#comments</comments>
		<pubDate>Fri, 30 Oct 2009 18:33:41 +0000</pubDate>
		<dc:creator>Brian Manning</dc:creator>
				<category><![CDATA[HTML/CSS]]></category>

		<guid isPermaLink="false">http://staging.brimanning.com/blog/?p=13</guid>
		<description><![CDATA[I go over how I style BriManning.com's <code> elements.</code>]]></description>
			<content:encoded><![CDATA[<p>
A lot of sites use the <code>&lt;code&gt;</code> tag to format pieces of code.  However, what do you do if you want to do a code block, like:
</p>
<pre><code>body {
    some css stuff
}
</code></pre>
<p>
I personally use <code>&lt;pre&gt;&lt;code&gt;</code>.  This way, I can take some code and paste it in and it will look like my normal code.
</p>
<p>
One thing to make sure is that <code>&lt;pre&gt;&lt;code&gt;</code> are just like that, on the same line as each other and on the same line of the first line of code text.  Otherwise, you end up with an extra line you don&#8217;t want because of the <code>&lt;pre&gt;</code> element.
</p>
<p>
For an example, here&#8217;s the css I use for that code block:
</p>
<pre><code>pre code {
    font-family:monospace;
    margin:10px 25px;
    padding:10px;
    border:1px solid #aaa;
    color:#336b45;
    display:block;
    font-size:1.1em;
}
</code></pre>
<p>
Ta da!</p>
]]></content:encoded>
			<wfw:commentRss>http://brimanning.com/blog/styling-code/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

