<?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>Tech, music and video game enthusiast</description>
	<lastBuildDate>Tue, 31 Aug 2010 22:21:11 +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>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[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[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><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[Tips]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[quicktips]]></category>

		<guid isPermaLink="false">http://andygirvan.com/?p=108</guid>
		<description><![CDATA[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><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>
