<?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>Andygirvan.com &#187; css</title>
	<atom:link href="http://andygirvan.com/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://andygirvan.com</link>
	<description>London based Freelance Web &#38; iPhone Developer</description>
	<lastBuildDate>Mon, 09 Jan 2012 17:08:48 +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>Why use Flash when you&#8217;ve got JS/CSS?</title>
		<link>http://andygirvan.com/2010/11/why-use-flash-when-youve-got-js-css/</link>
		<comments>http://andygirvan.com/2010/11/why-use-flash-when-youve-got-js-css/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 11:27:22 +0000</pubDate>
		<dc:creator>Andy G</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=183</guid>
		<description><![CDATA[<p>Posted in <a href="http://andygirvan.com/tumblog/articles/">Articles</a></p>With CSS3/JavaScript you can do all kinds of cool looking things...]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://andygirvan.com/tumblog/articles/">Articles</a></p><p>With <strong>CSS3/JavaScript</strong> you can do all kinds of cool looking things:</p>
<ul>
<li><a target="_blank" href="http://www.is-real.net/experiments/css3/wonder-webkit/">CSS3 Transformations</a></li>
<li><a target="_blank" href="http://www.zurb.com/playground/css3-polaroids">CSS3 Polaroids</a></li>
<li><a target="_blank" href="http://css-tricks.com/examples/StarryNightCSS3/">Starry Night in CSS3 &#8211; Scrolling Backgrounds</a></li>
<li><a target="_blank" href="http://www.paulrhayes.com/experiments/clock/#clock">Analogue Clock</a></li>
<li><a target="_blank" href="http://www.paulrhayes.com/experiments/cube/index.html">3D Cube</a></li>
<li><a target="_blank" href="http://demo.marcofolio.net/jquery_dj/">DJ Deck in CSS3 and jQuery</a></li>
<li><a target="_blank" href="http://demo.marcofolio.net/jpong/">jPong &#8211; Pong build in jQuery</a></li>
</ul>
<p>(most of these work best in the latest browsers (Chrome, Safari 5, Firefox))</p>
<p>As you can see, you don’t have to limit yourself to building interactive animations in Flash that won’t work on iPhone/iPad, or having to build a platform-locked application (like an app on the app store). But remember:</p>
<blockquote><p>&#8220;Similar to Flash, just because you can do it, doesn&#8217;t mean you always should.&#8221; <a href="http://www.twitter.com/kuatofkuat">@kuatofkuat</a></p></blockquote>
<p>Finally, the guys who created jQuery (our lovable Javascript library!) have only gone and created jQuery Mobile, which will allow you to build a website &#8211; once &#8211; and it will work and look good on <em>all</em> mobile devices.</p>
<p>Check it out at <a href="http://jquerymobile.com/">http://jquerymobile.com/</a> and the demos <a href="http://jquerymobile.com/demos/1.0a1/">http://jquerymobile.com/demos/1.0a1/</a> (try on any mobile device)</p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2010/11/why-use-flash-when-youve-got-js-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tips &#8211; CSS: Page breaking for print</title>
		<link>http://andygirvan.com/2010/07/page-break-behavior/</link>
		<comments>http://andygirvan.com/2010/07/page-break-behavior/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 13:24:34 +0000</pubDate>
		<dc:creator>Andy G</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[print]]></category>
		<category><![CDATA[quicktips]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=126</guid>
		<description><![CDATA[<p>Posted in <a href="http://andygirvan.com/category/development/css-development/" title="CSS">CSS</a><a href="http://andygirvan.com/category/tips/" title="Tips">Tips</a></p>The following code snippet will allow you to set the page breaking behavior to break before every h1 element, giving you a lot of control over how printed versions of your website will be displayed.]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://andygirvan.com/category/development/css-development/" title="CSS">CSS</a><a href="http://andygirvan.com/category/tips/" title="Tips">Tips</a></p><p><em><strong>Quick Tips </strong>is a series of posts designed to show some quick html, css and php tips that you may find useful in your every day work or personal projects. </em></p>
<p>The following code snippet will allow you to set the page breaking behavior to break before every h1 element, giving you a lot of control over how printed versions of your website will be displayed.</p>
<pre class="brush: js">
@media print {
       h1 {page-break-before:always}
}
</style>
</pre>
<p><em>If you wish to submit a quick tip to this section please <a href="mailto:girvan.andy@gmail.com">contact me</a>..</em><br />
<script type="text/javascript">// <![CDATA[
         SyntaxHighlighter.all()
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2010/07/page-break-behavior/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Tips &#8211; CSS: Change Text Highlight Color</title>
		<link>http://andygirvan.com/2010/07/quick-tips-css-change-text-highlight-color/</link>
		<comments>http://andygirvan.com/2010/07/quick-tips-css-change-text-highlight-color/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 10:00:59 +0000</pubDate>
		<dc:creator>Andy G</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[quicktips]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=108</guid>
		<description><![CDATA[<p>Posted in <a href="http://andygirvan.com/category/development/css-development/" title="CSS">CSS</a><a href="http://andygirvan.com/category/tips/" title="Tips">Tips</a></p>With CSS, on the standards compliant browsers such as Firefox, Chrome or Safari, you can decide what color shade the highlighted text appears for users]]></description>
			<content:encoded><![CDATA[<p>Posted in <a href="http://andygirvan.com/category/development/css-development/" title="CSS">CSS</a><a href="http://andygirvan.com/category/tips/" title="Tips">Tips</a></p><p><em><strong>Quick Tips </strong>is a series of posts designed to show some quick html, css and php tips that you may find useful in your every day work or personal projects. </em></p>
<p>With CSS, on the standards compliant browsers such as Firefox, Chrome or Safari, you can decide what color shade the highlighted text appears for users using the following CSS:</p>
<pre class="brush: js">::selection { /* Safari &amp; Chrome */
 color:#000;
 background:#FFF;
}
::-moz-selection { /* Firefox */
 color:#000;
 background:#FFF;
}
</pre>
<p><em>If you wish to submit a quick tip to this section please <a href="mailto:girvan.andy@gmail.com">contact me</a>..</em><br />
<script type="text/javascript">// <![CDATA[
         SyntaxHighlighter.all()
// ]]&gt;</script></p>
]]></content:encoded>
			<wfw:commentRss>http://andygirvan.com/2010/07/quick-tips-css-change-text-highlight-color/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

