<?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>CSS Tutorials and CSS Articles &#187; Beginner</title>
	<atom:link href="http://www.cssmaster.co.uk/tag/beginner/feed" rel="self" type="application/rss+xml" />
	<link>http://www.cssmaster.co.uk</link>
	<description>CSS tutorials and articles</description>
	<lastBuildDate>Tue, 02 Feb 2010 01:43:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>What is CSS?</title>
		<link>http://www.cssmaster.co.uk/what-is-css</link>
		<comments>http://www.cssmaster.co.uk/what-is-css#comments</comments>
		<pubDate>Thu, 14 Jan 2010 19:01:01 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Articles]]></category>
		<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=5</guid>
		<description><![CDATA[CSS stands for Cascading Style Sheets and it usually used in conjunction to (X)HTML to style elements on a web page.  This all sounds very complicated, but what does it mean?
Traditionally web pages were made only from HTML.  So the programmer would tell the browser (using HTML) that there is to be an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CSS</strong> stands for <strong>Cascading Style Sheets</strong> and it usually used in conjunction to <strong>(X)HTML</strong> to style elements on a web page.  This all sounds very complicated, but what does it mean?</p>
<p>Traditionally web pages were made only from HTML.  So the programmer would tell the browser (using HTML) that there is to be an image at the top with a border, followed by some text below it.<br />
<code>&lt;img src="images/my_image.jpg" alt="My Image" border="1" /&gt;&lt;br /&gt;<br />
&lt;p&gt;Some text here&lt;/p&gt;</code><br />
Great stuff.  But imagine this is on every page of a 3,000 page website.  One day, you decide the image would look better with a 2 pixel border.  Crap.  That&#8217;s easily a day&#8217;s work going through and changing the alignment.  This is why CSS was created.</p>
<p>Using CSS you could give the image a class:<br />
<code>&lt;img src="images/my_image.jpg" alt="My Image" class="my_class" /&gt;</code><br />
This class can then be reference in your <strong>Casecading Style Sheet</strong> (<em>CSS</em>), allowing you to set styles in your style sheet&#8230;<br />
<code><br />
.my_class{<br />
  border:2px solid #000;<br />
}<br />
</code></p>
<p>So, to change the image&#8217;s appearence on the whole site, you now only need the one change.</p>
<p>To include a CSS file into a HTML document you just need to do:<br />
<code>&lt;link href="my_stylesheet.css" rel="stylesheet" type="text/css" /&gt;</code></p>
<p>Easy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/what-is-css/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

