<?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</title>
	<atom:link href="http://www.cssmaster.co.uk/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>CSS Pseudo-Classes</title>
		<link>http://www.cssmaster.co.uk/css-pseudo-classes</link>
		<comments>http://www.cssmaster.co.uk/css-pseudo-classes#comments</comments>
		<pubDate>Tue, 02 Feb 2010 01:43:09 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Pseudo-Classes]]></category>
		<category><![CDATA[CSS Selectors]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=92</guid>
		<description><![CDATA[Some CSS selectors allow use to use what are called CSS pseudo-classes in order to add some special effects.  Probably the best example of this is the anchor tag and it&#8217;s hover features.
Anchor tag&#8217;s behaviours can be manipulated by using pseudo-classes.  Let&#8217;s say we want a link to go bold when we hover [...]]]></description>
			<content:encoded><![CDATA[<p>Some CSS selectors allow use to use what are called <strong>CSS pseudo-classes</strong> in order to add some special effects.  Probably the best example of this is the anchor tag and it&#8217;s hover features.</p>
<p>Anchor tag&#8217;s behaviours can be manipulated by using pseudo-classes.  Let&#8217;s say we want a link to go bold when we hover over it, we can use the pseudo class to do this.  Look at the syntax:<br />
<code>selector:pseudo{ foo:bar; }</code></p>
<p>Now let&#8217;s do our bold hover example.  I&#8217;ll also pop in the original anchor declaration:<br />
<code>a { color:red; }<br />
a:hover { font-weight:bold; }</code><br />
When the user hovers their mouse over the anchor it will appear bolded.  I&#8217;ve done this on the link below:</p>
<style type="text/css">a.red:hover { font-weight:bold; }</style>
<p><a href="#" class="red">Example.</a></p>
<p>Easy.</p>
<p>Other pseudo classes for anchor text include:</p>
<ul>
<li>link</li>
<li>visited</li>
<li>hover</li>
<li>active</li>
</ul>
<p>All of these refer to the state and behaviour of the anchor itself.  It&#8217;s pretty self-explanatory what each is for.</p>
<p>It is also possible to use a class on your pseudo-classes:<br />
<code>a.red:hover { font-weight:bold; }</code><br />
You can then use <code>class="red"</code> to all the class.</p>
<p>Another useful pseudo-element is the <code>first-child</code> pseudo-class.  This allows you to add a style to an element that is the first child of another element.  This is handy for styling the first list element out of an (un)ordered list.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-pseudo-classes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Align Using Margin</title>
		<link>http://www.cssmaster.co.uk/css-align-using-margin</link>
		<comments>http://www.cssmaster.co.uk/css-align-using-margin#comments</comments>
		<pubDate>Fri, 29 Jan 2010 00:14:00 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Align]]></category>
		<category><![CDATA[CSS Margin]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=90</guid>
		<description><![CDATA[You will often want to center align a block element (such as a div).  Personally I find the best way to do this is to use CSS Align Using Margin.  
Setting a margin to auto will try and force the element to the opposite side.  So, if you set both left and [...]]]></description>
			<content:encoded><![CDATA[<p>You will often want to center align a block element (such as a div).  Personally I find the best way to do this is to use <strong>CSS Align Using Margin</strong>.  </p>
<p>Setting a margin to auto will try and force the element to the opposite side.  So, if you set both left and right margins to auto, the browser will put the browser in center.</p>
<p>Let&#8217;s take a look at the follow example CSS code, to be applied to a block element like a div:<br />
<code><br />
.centerme{<br />
&nbsp;&nbsp;width:100px;<br />
&nbsp;&nbsp;margin-left:auto;<br />
&nbsp;&nbsp;margin-right:auto;<br />
}<br />
</code><br />
It is very important you set a width on the element.  You cannot center align something that takes up the full width of it&#8217;s container.  Imagine a room full of water, you cannot make the water go into the center of the room without forcing its sides in.  Bit of an odd analogy, but you get the meaning.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-align-using-margin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Floats</title>
		<link>http://www.cssmaster.co.uk/css-floats</link>
		<comments>http://www.cssmaster.co.uk/css-floats#comments</comments>
		<pubDate>Wed, 27 Jan 2010 23:43:13 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Floats]]></category>
		<category><![CDATA[CSS Layouts]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=87</guid>
		<description><![CDATA[Often you&#8217;ll want an item to be left or right aligned with text wrapped around it, this is what CSS Floats are used for.  CSS Floats are used in the majority of CSS layouts, they&#8217;re very handy and you should learn how they work inside and out.
The best example to use for CSS floats [...]]]></description>
			<content:encoded><![CDATA[<p>Often you&#8217;ll want an item to be left or right aligned with text wrapped around it, this is what <strong>CSS Floats</strong> are used for.  CSS Floats are used in the majority of CSS layouts, they&#8217;re very handy and you should learn how they work inside and out.</p>
<p>The best example to use for CSS floats is floating an image to the left or right and having text wrap around it.  Take the following example:<br />
<div id="attachment_88" class="wp-caption alignnone" style="width: 457px"><a href="http://www.cssmaster.co.uk/wp-content/uploads/2010/01/float.jpg"><img src="http://www.cssmaster.co.uk/wp-content/uploads/2010/01/float.jpg" alt="CSS Float" title="CSS Float" width="447" height="261" class="size-full wp-image-88" /></a><p class="wp-caption-text">CSS Float</p></div><br />
To achieve the above is easy, let&#8217;s take a look at the mark-up.<br />
[code]&lt;div&gt;All of your text here. &lt;img src="images/floated.jpg" alt="Floats" class="floatleftexample" /&gt; and the rest of your text here &lt;/div&gt;[/code]<br />
And now the CSS&#8230;<br />
[code].floatleftexample { float:left; }[/code]<br />
This will force the image to &#8216;float&#8217; to the left and all text to flow around it.  </p>
<p>If you use floats on block elements you can quite easily make very effective columned layouts.  Floating two divs to the left and setting widths will give you two adjacent elements.  Handy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-floats/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Positioning</title>
		<link>http://www.cssmaster.co.uk/css-positioning</link>
		<comments>http://www.cssmaster.co.uk/css-positioning#comments</comments>
		<pubDate>Mon, 18 Jan 2010 20:22:02 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Positioning]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=62</guid>
		<description><![CDATA[Positioning elements on a page can be tricky some times.  There is a lot to remember, but if you can master CSS Positioning then you should be on the right track.
CSS Positioning consists of 4 main declarations:

Static
Fixed
Relative
Absolute

The static position (position:static;) is the default for HTML elements.  It basically means that the element will [...]]]></description>
			<content:encoded><![CDATA[<p>Positioning elements on a page can be tricky some times.  There is a lot to remember, but if you can master <strong>CSS Positioning</strong> then you should be on the right track.</p>
<p><strong>CSS Positioning</strong> consists of 4 main declarations:</p>
<ul>
<li>Static</li>
<li>Fixed</li>
<li>Relative</li>
<li>Absolute</li>
</ul>
<p>The static position (<code>position:static;</code>) is the default for HTML elements.  It basically means that the element will follow the flow of the page and act as you&#8217;d expect them to.</p>
<p><code>position:fixed;</code> is a little different.  The element with this declaration will be placed exactly where you specify and will not move even when the browser window is scrolled.  See the example:<br />
<code>.fixed_div {<br />
&nbsp;&nbsp;position:fixed;<br />
&nbsp;&nbsp;top:0px;<br />
right:10px;<br />
}</code></p>
<p>Next we have relative positioning.  A relatively positioned HTML element is positioned relative to where it would normally be.  Let&#8217;s see the example:<br />
<code>.relative_div {<br />
&nbsp;&nbsp;position:relative;<br />
&nbsp;&nbsp;left:20px;<br />
}</code><br />
This div would be 20 pixels to the right of where it would normally be.  Setting left:-20px; would move it to the left.</p>
<p>An absolutely positioned element is quite different to the others.  The absolutely positioned elements will be placed exactly where you specify on the page, but all other elements on the page will totally ignore it.  Take the following example:<br />
<code>.abs_div{<br />
&nbsp;&nbsp;position:absolute;<br />
&nbsp;&nbsp;top:10px;<br />
}</code><br />
That element will now appear at the top of the page and will (probably) overlap the rest of your content.  </p>
<p>Using <code>position:absolute;</code> it is possible to overlap elements over one another.  Let&#8217;s have a look at the following:<br />
<code>.abs_div{<br />
&nbsp;&nbsp;position:absolute;<br />
&nbsp;&nbsp;top:10px;<br />
&nbsp;&nbsp;width:200px;<br />
&nbsp;&nbsp;height:200px;<br />
&nbsp;&nbsp;background-color:red;<br />
}</p>
<p>.abs_div_over{<br />
&nbsp;&nbsp;position:absolute;<br />
&nbsp;&nbsp;top:20px;<br />
&nbsp;&nbsp;width:200px;<br />
&nbsp;&nbsp;height:200px;<br />
&nbsp;&nbsp;background-color:blue;<br />
&nbsp;&nbsp;z-index:1;<br />
}</code></p>
<p>The above will create 2 boxes at the top of the page, one is red and one is blue.  We have introduced the <code>z-index</code> declaration.  Previously we have used the x and y coordinates (<code>left</code> and <code>top</code>), z-index defines the position of the elements on the page on the z-axis.  The higher the z-index, the further up the pile it is.  The default for z-index is 0, so setting 1 means it will overlap default elements.</p>
<p>When using z-index I suggest always using number in the thousands.  So if you only have one element you want to be placed on top then give it a z-index of 1000.  Doing it this way gives you lots of scope for the future.  In 6 months time you might want to add an element inbetween the two original ones, which if you used z-index:1; would mean recoding, with z-index:1000; you simply add one inbetween.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-positioning/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Display</title>
		<link>http://www.cssmaster.co.uk/css-display</link>
		<comments>http://www.cssmaster.co.uk/css-display#comments</comments>
		<pubDate>Mon, 18 Jan 2010 11:23:21 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Display]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=60</guid>
		<description><![CDATA[There are different ways you can display or hide an element using CSS Display and CSS Visibility.   Let&#8217;s begin at the ways we can hide an element.
visibility:hidden; this declaration will hide the element from the users screen, but the page still acts as if it was there.  So, if you have a [...]]]></description>
			<content:encoded><![CDATA[<p>There are different ways you can display or hide an element using <strong>CSS Display</strong> and <strong>CSS Visibility</strong>.   Let&#8217;s begin at the ways we can hide an element.</p>
<p><code>visibility:hidden;</code> this declaration will hide the element from the users screen, but the page still acts as if it was there.  So, if you have a div that is 500&#215;500px, and you use <code>visibility:hidden;</code> the contents (and background) of that div will not show, but there will be a large whitespace instead.</p>
<p><code>display:none;</code> is similar to <code>visibility:hidden;</code> in that the element cannot be seen, but instead of just showing a whitespace the element is totally removed.  It is as though the element is not even there.</p>
<p>There are three modes of displaying elements on-screen.  The first is <code>display:inline;</code>, this makes the element continue with the flow of the page.  A good way of explaining this is with a flow of text.  Let&#8217;s a assume you have a paragraph of 3,000 lines, on line 500 you have an inline element that just makes it&#8217;s content text red, this text will flow with the rest of the content.  Now let&#8217;s imagine that same element was <code>display:block;</code>, the red text would begin on it&#8217;s own line, and the remainder of the original div would then start on it&#8217;s own line.  Some good examples of block elements are divs, h1 (h2, h3, &#8230;), p.  Some examples of inline elements are span and a.</p>
<p>There is an in-between declaration of <code>display:inline-block;</code>, which allows a block element to appear in the flow of the text.  Block elements can be styled more solidly than inline elements; so let&#8217;s say you have styled your a tag with display:block; with some other attributes to make it look like a button.  If you want this button to follow the flow of text then <code>display:inline-block;</code> is the ideal solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-display/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Dimensions</title>
		<link>http://www.cssmaster.co.uk/css-dimensions</link>
		<comments>http://www.cssmaster.co.uk/css-dimensions#comments</comments>
		<pubDate>Mon, 18 Jan 2010 01:00:01 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Dimensions]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=58</guid>
		<description><![CDATA[When creating CSS layouts it&#8217;s important to keep in mind how CSS Dimensions work.
There are 6 different dimension declarations:

height
max-height
min-height
width
max-width
min-width

Height and width state the height and width of an element.  Not all elements can have specific widths or heights defined, and some will shrink depending on the size of their content.  You can usually [...]]]></description>
			<content:encoded><![CDATA[<p>When creating CSS layouts it&#8217;s important to keep in mind how <strong>CSS Dimensions</strong> work.</p>
<p>There are 6 different dimension declarations:</p>
<ul>
<li>height</li>
<li>max-height</li>
<li>min-height</li>
<li>width</li>
<li>max-width</li>
<li>min-width</li>
</ul>
<p>Height and width state the height and width of an element.  Not all elements can have specific widths or heights defined, and some will shrink depending on the size of their content.  You can usually avoid this by using <code>display:block;</code>.  We&#8217;ll be using a default block displayed element, a <code>div</code>.</p>
<p>Max-height and max-width specifies the maximum dimensions of the given element, not allowing it to go any larger.  If, however, the content is larger that the maximum most browser will increase the dimensions over your declarations.  You can use <code>overflow</code> declarations to try and over come this.</p>
<p>Min-height and min-widths are very useful when creating columned layouts.  Let&#8217;s imagine you have a web page with two columns, one for your navigation, and one for your content, with a footer div at the bottom.  Sometimes your content will only be one line long, meaning that the footer will become part of the content pane (assuming you haven&#8217;t cleared floats).  You can force the content div to be a specific height, unless the content forces it to be larger.<br />
<code>.content { min-height: 300px; }</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-dimensions/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Grouping and Nesting</title>
		<link>http://www.cssmaster.co.uk/css-grouping-and-nesting</link>
		<comments>http://www.cssmaster.co.uk/css-grouping-and-nesting#comments</comments>
		<pubDate>Sat, 16 Jan 2010 23:23:26 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Grouping]]></category>
		<category><![CDATA[CSS Nesting]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=51</guid>
		<description><![CDATA[In CSS it is possible to nest and group selectors together.
The easiest way to explain CSS grouping and nesting is by using examples.  
Let&#8217;s say I want to have all my h tags (h1-h6) in a green font colour, rather than the rest which are all black.  All I need to do is [...]]]></description>
			<content:encoded><![CDATA[<p>In CSS it is possible to nest and group <a href="http://www.cssmaster.co.uk/selectors-and-declarations">selectors</a> together.</p>
<p>The easiest way to explain <strong>CSS grouping and nesting</strong> is by using examples.  </p>
<p>Let&#8217;s say I want to have all my h tags (h1-h6) in a green font colour, rather than the rest which are all black.  All I need to do is list the tags I want to use as selectors one after another, just before the declaration:<br />
<code>h1,h2,h3,h4,h5,h6{<br />
&nbsp;&nbsp;color:green;<br />
}</code></p>
<p>This works for classes too:<br />
<code>.bold,.bolded,.bolder{<br />
&nbsp;&nbsp;font-weight:bold;<br />
}</code></p>
<p>You can also nest selectors.  Let&#8217;s say I have a div, in which content resides, but I want that content to be styled differently to the rest of the page, without having to declare a style for everything.<br />
<code>.my_div{<br />
&nbsp;&nbsp;background-color:green;<br />
}<br />
.my_div p{<br />
&nbsp;&nbsp;color:white;<br />
}</code><br />
That code will make all paragraph tags WITHIN the .my_div element to be styled that way.  You will find this a massive time saver and of great use when dealing with larger web pages.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-grouping-and-nesting/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Padding</title>
		<link>http://www.cssmaster.co.uk/css-padding</link>
		<comments>http://www.cssmaster.co.uk/css-padding#comments</comments>
		<pubDate>Sat, 16 Jan 2010 22:50:27 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Padding]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=49</guid>
		<description><![CDATA[CSS Padding is similar to CSS Margin and part of the CSS Box Model.  
Adding padding to an element will make the contents of that element move away from the outside of the element.
Take the following example:
The below div has absolutely no padding on it.

No padding

If we add 10 pixels padding:

10px padding

You can use [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CSS Padding</strong> is similar to <a href="http://www.cssmaster.co.uk/css-margin">CSS Margin</a> and part of the <a href="http://www.cssmaster.co.uk/css-box-model">CSS Box Model</a>.  </p>
<p>Adding padding to an element will make the contents of that element move away from the outside of the element.</p>
<p>Take the following example:<br />
The below div has absolutely no padding on it.</p>
<div style="background-color:green;">
<div style="padding:0px;border:1px solid #000;color:#fff;">No padding</div>
</div>
<p>If we add 10 pixels padding:</p>
<div style="background-color:green;">
<div style="padding:10px;border:1px solid #000;color:#fff;">10px padding</div>
</div>
<p>You can use shorthand of: <code>padding: north east south west;</code>, as an example: <code>padding:5px 10px 5px 10px;</code>, or just <code>padding:10px;</code> to apply to all sides.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-padding/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Margin</title>
		<link>http://www.cssmaster.co.uk/css-margin</link>
		<comments>http://www.cssmaster.co.uk/css-margin#comments</comments>
		<pubDate>Sat, 16 Jan 2010 22:43:37 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Margin]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=46</guid>
		<description><![CDATA[CSS Margin can be used to manipulate the space around an HTML element.
The below div have absolutely no margin on it.

No margin

If we add 10 pixels margin:

10px margin

As you can see, the CSS: .my_div { margin:10px; } adds 10 pixels of margin on ALL sides of the element.  This includes the top AND bottom, [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CSS Margin</strong> can be used to manipulate the space around an HTML element.</p>
<p>The below div have absolutely no margin on it.</p>
<div style="background-color:green;">
<div style="margin:0px;border:1px solid #000;color:#fff;">No margin</div>
</div>
<p>If we add 10 pixels margin:</p>
<div style="background-color:green;">
<div style="margin:10px;border:1px solid #000;color:#fff;">10px margin</div>
</div>
<p>As you can see, the CSS: <code>.my_div { margin:10px; }</code> adds 10 pixels of margin on ALL sides of the element.  This includes the top AND bottom, left AND right, so be careful when positioning elements and calculating widths.  A 10px margin on an element makes it 20 pixels wider, and 20 pixels higher.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-margin/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CSS Outline</title>
		<link>http://www.cssmaster.co.uk/css-outline</link>
		<comments>http://www.cssmaster.co.uk/css-outline#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:57:20 +0000</pubDate>
		<dc:creator>CSS Master</dc:creator>
				<category><![CDATA[CSS Tutorials]]></category>
		<category><![CDATA[CSS Border]]></category>
		<category><![CDATA[CSS Outline]]></category>

		<guid isPermaLink="false">http://www.cssmaster.co.uk/?p=41</guid>
		<description><![CDATA[A CSS Outline is extremely similar to CSS Border.  A CSS Outline is simply a CSS Border outside the element.  Using CSS outlines you can make an element stand out and have two seperate borders.
.my_div { outline:1px solid #000; }
Would produce:
A 1px solid outline
Now let&#8217;s include this with a border.
.my_div {
&#160;&#160;outline:1px solid #000;
&#160;&#160;border:1px [...]]]></description>
			<content:encoded><![CDATA[<p>A <strong>CSS Outline</strong> is extremely similar to <a href="http://www.cssmaster.co.uk/css-border">CSS Border</a>.  A <strong>CSS Outline</strong> is simply a <a href="http://www.cssmaster.co.uk/css-border">CSS Border</a> outside the element.  Using CSS outlines you can make an element stand out and have two seperate borders.</p>
<p><code>.my_div { outline:1px solid #000; }</code><br />
Would produce:</p>
<div style="outline:1px solid #000;">A 1px solid outline</div>
<p>Now let&#8217;s include this with a border.<br />
<code>.my_div {<br />
&nbsp;&nbsp;outline:1px solid #000;<br />
&nbsp;&nbsp;border:1px dashed #000;<br />
}</code><br />
Would produce:</p>
<div style="outline:1px solid #000;border:1px dashed #000;">A 1px solid outline, with 1px dashed border</div>
<p>The <strong>CSS Outline</strong> syntax is pretty much the same as <a href="http://www.cssmaster.co.uk/css-border">CSS Borders</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.cssmaster.co.uk/css-outline/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
