<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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/"
	>

<channel>
	<title>HTML Source - definitive guide to HTML and CSS Development</title>
	<link>http://www.htmlsource.co.uk</link>
	<description>HTML Source - definitive guide to HTML and CSS Development</description>
	<pubDate>Thu, 09 Oct 2008 19:49:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>en</language>
			<item>
		<title>IE6 Issue fixed for 3 column layout seo (search engine optimisation)</title>
		<link>http://www.htmlsource.co.uk/ie6-issue-fixed-for-3-column-layout-seo-search-engine-optimisation/</link>
		<comments>http://www.htmlsource.co.uk/ie6-issue-fixed-for-3-column-layout-seo-search-engine-optimisation/#comments</comments>
		<pubDate>Thu, 09 Oct 2008 19:40:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Layouts]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/ie6-issue-fixed-for-3-column-layout-seo-search-engine-optimisation/</guid>
		<description><![CDATA[You may remember in my previous post that I had an issue with IE6 for the 3 column layout for seo (search engine optimisation). Well you will be glad to hear that I have sorted it, the latest CSS can be found below, just copy this over your existing CSS from the previous post and [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/ie6-issue-fixed-for-3-column-layout-seo-search-engine-optimisation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>3 column layout seo (search engine optimisation)</title>
		<link>http://www.htmlsource.co.uk/3-column-layout-seo-search-engine-optimisation/</link>
		<comments>http://www.htmlsource.co.uk/3-column-layout-seo-search-engine-optimisation/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 21:53:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Layouts]]></category>

		<category><![CDATA[3 column layout SEO]]></category>

		<category><![CDATA[SEO layout]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/3-column-layout-seo-search-engine-optimisation/</guid>
		<description><![CDATA[The example below is for creating a 3 column layout which keeps SEO in mind as the first thing we want the bots to see is our content and not our navigation.
HTML Example code

&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml" &#62;
&#60;head&#62;
    &#60;title&#62;3 Column Fixed Width layout&#60;/title&#62;
    &#60;link [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/3-column-layout-seo-search-engine-optimisation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating a valid XHTML form</title>
		<link>http://www.htmlsource.co.uk/creating-a-valid-xhtml-form/</link>
		<comments>http://www.htmlsource.co.uk/creating-a-valid-xhtml-form/#comments</comments>
		<pubDate>Wed, 10 Sep 2008 21:45:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Form and Input]]></category>

		<category><![CDATA[DOCTYPE XHTML 1.1]]></category>

		<category><![CDATA[fieldset]]></category>

		<category><![CDATA[form]]></category>

		<category><![CDATA[input]]></category>

		<category><![CDATA[label]]></category>

		<category><![CDATA[valid XHTML form]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/creating-a-valid-xhtml-form/</guid>
		<description><![CDATA[Below shows you how to create a valid XHTML form using the latest DOCTYPE XHTML 1.1 version.

&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&#62;
&#60;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&#62;
&#60;head&#62;
&#60;title&#62;Valid XHTML form&#60;/title&#62;
&#60;meta http-equiv="content-type" content="charset=ISO-8859-1" /&#62;
&#60;/head&#62;
	&#60;body&#62;
		&#60;form action=""&#62;
			&#60;fieldset&#62;
				&#60;label for="email"&#62;Email&#60;/label&#62; &#60;input type="text" name="email" id="email" /&#62;
				&#60;input type="submit" name="submit" value="send" /&#62;
			&#60;/fieldset&#62;
		&#60;/form&#62;
	&#60;/body&#62;
&#60;/html&#62;


Bookmark It















Hide Sites



]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/creating-a-valid-xhtml-form/feed/</wfw:commentRss>
		</item>
		<item>
		<title>CSS - repeating background images</title>
		<link>http://www.htmlsource.co.uk/css-repeating-background-images/</link>
		<comments>http://www.htmlsource.co.uk/css-repeating-background-images/#comments</comments>
		<pubDate>Thu, 19 Jun 2008 21:32:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Backgrounds]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[background image]]></category>

		<category><![CDATA[repeat background image]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/css-repeating-background-images/</guid>
		<description><![CDATA[Background images are one of the easiest aspects of a website to do and can transform your site tremendously if done correctly.
You can have background images repeating vertically (y-axis), horizontially (x-axis) or until it covers the entire element background.
In the following examples I will firstly show the full CSS then I will show the minimilised [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/css-repeating-background-images/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DOCTYPE declaration XHTML 1.1</title>
		<link>http://www.htmlsource.co.uk/doctype-xhtml-11/</link>
		<comments>http://www.htmlsource.co.uk/doctype-xhtml-11/#comments</comments>
		<pubDate>Wed, 04 Jun 2008 17:28:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Declarations]]></category>

		<category><![CDATA[Declaration]]></category>

		<category><![CDATA[doctype]]></category>

		<category><![CDATA[xhtml 1.1]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/doctype-xhtml-11/</guid>
		<description><![CDATA[This the latest version of XHTML provides a definition of strictly conforming XHTML documents, which are restricted to elements and attributes from the XHTML namespace.
The DOCTYPE declaration xhtml 1.1 should always be written above the &#60;html&#62; just like all the other declarations.

&#60;?xml version="1.0" encoding="UTF-8"?&#62;
&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
	"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&#62;
This is list of the main changes [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/doctype-xhtml-11/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Creating a 100% background image</title>
		<link>http://www.htmlsource.co.uk/creating-a-100-background-image/</link>
		<comments>http://www.htmlsource.co.uk/creating-a-100-background-image/#comments</comments>
		<pubDate>Sat, 17 May 2008 09:42:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Backgrounds]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Images]]></category>

		<category><![CDATA[background]]></category>

		<category><![CDATA[background image]]></category>

		<category><![CDATA[images]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/creating-a-100-background-image/</guid>
		<description><![CDATA[Have you ever wanted to make a background image 100% high and 100% wide but having trouble with browser compatibility or text not been viewable? Well if thats the case hopefully this is for you!!!
I have been looking around for a while and there are a few examples out there where they use position:static for [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/creating-a-100-background-image/feed/</wfw:commentRss>
		</item>
		<item>
		<title>2 column layout using CSS with SEO in mind (fixed width)</title>
		<link>http://www.htmlsource.co.uk/2-column-layout-using-css-with-seo-in-mind-fixed-width/</link>
		<comments>http://www.htmlsource.co.uk/2-column-layout-using-css-with-seo-in-mind-fixed-width/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 14:26:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Layouts]]></category>

		<category><![CDATA[2 column layout]]></category>

		<category><![CDATA[float]]></category>

		<category><![CDATA[SEO layout]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/2-column-layout-using-css-with-seo-in-mind-fixed-width/</guid>
		<description><![CDATA[Have you ever wanted a layout with 2 equal column centred in the page without the use of tables by just using CSS? eg:
Well the following tutorial will help you achieve this and is compatible with IE 6/7, FF, Opera, Netscape and Safari (PC)
OK, what we will start off with is a basic XHTML transitional [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/2-column-layout-using-css-with-seo-in-mind-fixed-width/feed/</wfw:commentRss>
		</item>
		<item>
		<title>html tag: abbr</title>
		<link>http://www.htmlsource.co.uk/html-tag-abbr/</link>
		<comments>http://www.htmlsource.co.uk/html-tag-abbr/#comments</comments>
		<pubDate>Sat, 05 Apr 2008 14:39:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tags]]></category>

		<category><![CDATA[abbr]]></category>

		<category><![CDATA[acronym]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/html-tag-abbr/</guid>
		<description><![CDATA[abbr is short for abbreviation, an abbreviation is a shortened form of a word or phrase. Usually it consists of a letter or group of letters taken from the word or phrase. For example &#8220;HTML&#8221; is short for HyperText Markup Language.
abbr attributes

title - the title attribute is used to show the complete phrase or abbreviation

abbr [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/html-tag-abbr/feed/</wfw:commentRss>
		</item>
		<item>
		<title>html tag: acronym</title>
		<link>http://www.htmlsource.co.uk/html-tag-acronym/</link>
		<comments>http://www.htmlsource.co.uk/html-tag-acronym/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 22:35:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tags]]></category>

		<category><![CDATA[Text]]></category>

		<category><![CDATA[acronym]]></category>

		<category><![CDATA[title]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/html-tag-acronym/</guid>
		<description><![CDATA[acronyms are abbreviations that are formed using the initial components in a phrase or name for example HTML is short for Hyper Text Markup Language.
acronyms are generally used to help the acronym stand out more and allow more information to be displayed when mousing over, just like the title attribute in the anchor tags.
Acronym attributes

title [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/html-tag-acronym/feed/</wfw:commentRss>
		</item>
		<item>
		<title>IE8 will use Standards mode by default</title>
		<link>http://www.htmlsource.co.uk/ie8-will-use-standards-mode-by-default/</link>
		<comments>http://www.htmlsource.co.uk/ie8-will-use-standards-mode-by-default/#comments</comments>
		<pubDate>Sat, 08 Mar 2008 23:01:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Latest News]]></category>

		<category><![CDATA[W3C Standard's]]></category>

		<category><![CDATA[IE]]></category>

		<category><![CDATA[Internet Explorer]]></category>

		<category><![CDATA[Microsoft]]></category>

		<category><![CDATA[Web Standards]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/ie8-will-use-standards-mode-by-default/</guid>
		<description><![CDATA[Yes you read that right, Microsoft have said that IE8 will use Standards mode by default (guess miracles do happen).
More on this news can be found here:

Surprise of the year: IE8 will use Standards mode by default
Microsoft&#8217;s Interoperability Principles and IE8



Bookmark It















Hide Sites



]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/ie8-will-use-standards-mode-by-default/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Basic horizontal CSS navigation menu</title>
		<link>http://www.htmlsource.co.uk/basic-horizontal-css-navigation-menu/</link>
		<comments>http://www.htmlsource.co.uk/basic-horizontal-css-navigation-menu/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 20:32:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Layouts]]></category>

		<category><![CDATA[List]]></category>

		<category><![CDATA[CSS navigation]]></category>

		<category><![CDATA[float]]></category>

		<category><![CDATA[li]]></category>

		<category><![CDATA[ul]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/basic-css-navigation-menu/</guid>
		<description><![CDATA[In this tutorial we are going to create is a basic horizontal navigation using CSS just like the one in the HTMLSource header.
The tutorial will be split into two parts:

The XHTML side
The CSS side

We will start off with the basic XHTML and then get onto the more complex CSS after which will turn our list [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/basic-horizontal-css-navigation-menu/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding the meta Content-Type declaration</title>
		<link>http://www.htmlsource.co.uk/adding-the-meta-content-type-declaration/</link>
		<comments>http://www.htmlsource.co.uk/adding-the-meta-content-type-declaration/#comments</comments>
		<pubDate>Tue, 19 Feb 2008 21:37:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Declarations]]></category>

		<category><![CDATA[Getting Started]]></category>

		<category><![CDATA[Content-type]]></category>

		<category><![CDATA[Declaration]]></category>

		<category><![CDATA[doctype]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/adding-the-meta-content-type-declaration/</guid>
		<description><![CDATA[The Content-Type is used to specify to the browser what MIME type the file is going to be returned as, so the browser will know what media type the file is and what to do with it and also allow you to specifiy the character set (charset).
The media type and character set of an HTML [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/adding-the-meta-content-type-declaration/feed/</wfw:commentRss>
		</item>
		<item>
		<title>HTML and XHTML entities and special characters</title>
		<link>http://www.htmlsource.co.uk/html-and-xhtml-entities-and-special-characters/</link>
		<comments>http://www.htmlsource.co.uk/html-and-xhtml-entities-and-special-characters/#comments</comments>
		<pubDate>Sat, 16 Feb 2008 13:15:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Special Characters]]></category>

		<category><![CDATA[ampersand encoding]]></category>

		<category><![CDATA[greater than encoding]]></category>

		<category><![CDATA[HTML encoding]]></category>

		<category><![CDATA[html entities]]></category>

		<category><![CDATA[less than encoding]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/html-and-xhtml-entities-and-special-characters/</guid>
		<description><![CDATA[Within XHTML there are some characters which need replacing with valid XHTML entities or special charaters otherwise they will error when validiting your code in the W3C. This is also known as HTML Encoding.
There are three parts to building the entity.

&#38; (ampersand) - the entity always starts of with this character.
Number or Word - this [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/html-and-xhtml-entities-and-special-characters/feed/</wfw:commentRss>
		</item>
		<item>
		<title>using CSS and blockquote</title>
		<link>http://www.htmlsource.co.uk/using-css-and-blockquote/</link>
		<comments>http://www.htmlsource.co.uk/using-css-and-blockquote/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 14:59:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[CSS]]></category>

		<category><![CDATA[Layouts]]></category>

		<category><![CDATA[blockquote]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/using-css-and-blockquote/</guid>
		<description><![CDATA[The tutorial below will show you how to add speach marks to a quote without the use of images and just the use of pure CSS.
First we start off with the HTML for setting the blockquote in the page. (more information about the use and implementation of blockquote can be found here blockquote)

&#60;!DOCTYPE html PUBLIC [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/using-css-and-blockquote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>html tag: blockquote</title>
		<link>http://www.htmlsource.co.uk/html-tag-blockquote/</link>
		<comments>http://www.htmlsource.co.uk/html-tag-blockquote/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 22:27:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Tags]]></category>

		<category><![CDATA[Text]]></category>

		<category><![CDATA[blockquote]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/html-tag-blockquote/</guid>
		<description><![CDATA[The blockquote is used for large quotations. Within the blockquote element there must be a block-level element eg. &#60;p&#62;, &#60;div&#62;, &#60;ul&#62;, &#60;ol&#62; etc.
Possible blockquote attributes

cite is used to specify the URL where the quote has come from.

Blockquote Example

    &#60;blockquote&#62;
		&#60;p&#62;
			Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Quisque tortor neque, accumsan vel, convallis [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/html-tag-blockquote/feed/</wfw:commentRss>
		</item>
		<item>
		<title>css property: margin, margin-top, margin-right, margin-bottom, margin-left</title>
		<link>http://www.htmlsource.co.uk/css-property-margin-margin-top-margin-right-margin-bottom-margin-left/</link>
		<comments>http://www.htmlsource.co.uk/css-property-margin-margin-top-margin-right-margin-bottom-margin-left/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 22:04:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Properties]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[margin]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/css-property-margin-margin-top-margin-right-margin-bottom-margin-left/</guid>
		<description><![CDATA[margin specifies the margin of a selected element eg. div, image, blockquote or even an input.
Possible margin values

margin: 20px; or pt or % or em; - this sets the size of the margin to the element.
margin:inherit;  - this uses the size which has been set to any of the parents of the element.

There are [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/css-property-margin-margin-top-margin-right-margin-bottom-margin-left/feed/</wfw:commentRss>
		</item>
		<item>
		<title>css property: padding, padding-top, padding-right, padding-bottom, padding-left</title>
		<link>http://www.htmlsource.co.uk/css-property-padding-padding-top-padding-right-padding-bottom-padding-left/</link>
		<comments>http://www.htmlsource.co.uk/css-property-padding-padding-top-padding-right-padding-bottom-padding-left/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 21:54:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Properties]]></category>

		<category><![CDATA[CSS]]></category>

		<category><![CDATA[padding]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/css-property-padding-padding-top-padding-right-padding-bottom-padding-left/</guid>
		<description><![CDATA[padding specifies the padding of a selected element eg.  div, image, blockquote or even an input.
Possible padding values

padding: 20px; or pt or % or em; - this sets the size of the padding to the element.
padding:inherit;  - this uses the size which has been set to any of the parents of the element.

There are [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/css-property-padding-padding-top-padding-right-padding-bottom-padding-left/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Adding the xmlns attribute to your web page</title>
		<link>http://www.htmlsource.co.uk/adding-the-xmlns-attribute-to-your-web-page/</link>
		<comments>http://www.htmlsource.co.uk/adding-the-xmlns-attribute-to-your-web-page/#comments</comments>
		<pubDate>Sat, 02 Feb 2008 21:18:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Getting Started]]></category>

		<category><![CDATA[Declaration]]></category>

		<category><![CDATA[HTML]]></category>

		<category><![CDATA[XMLNS]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/adding-the-xmlns-attribute-to-your-web-page/</guid>
		<description><![CDATA[xmlns is used to define the XML namespace used for your web page and must contain http://www.w3.org/1999/xhtml
Example
Again remember that index.html page we created in the Getting Started section, open this, as we are going to use this page to build even further. If not just take a look at the example below.
 &#60;!DOCTYPE html PUBLIC [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/adding-the-xmlns-attribute-to-your-web-page/feed/</wfw:commentRss>
		</item>
		<item>
		<title>css property: clear</title>
		<link>http://www.htmlsource.co.uk/css-property-clear/</link>
		<comments>http://www.htmlsource.co.uk/css-property-clear/#comments</comments>
		<pubDate>Thu, 31 Jan 2008 22:04:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Properties]]></category>

		<category><![CDATA[float]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/css-property-clear/</guid>
		<description><![CDATA[clear is used to control a following element after a floating element.
Possible clear values

clear:left - this will clear all elements which have the css property float:left assigned to them and will place the element underneath
clear:right - this will clear all elements which have the css property float:right assigned to them and will place the element [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/css-property-clear/feed/</wfw:commentRss>
		</item>
		<item>
		<title>css property: float</title>
		<link>http://www.htmlsource.co.uk/css-property-float/</link>
		<comments>http://www.htmlsource.co.uk/css-property-float/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 13:16:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Properties]]></category>

		<category><![CDATA[blockquote]]></category>

		<category><![CDATA[div]]></category>

		<category><![CDATA[float]]></category>

		<category><![CDATA[image]]></category>

		<category><![CDATA[li]]></category>

		<category><![CDATA[p]]></category>

		<category><![CDATA[pre]]></category>

		<category><![CDATA[table]]></category>

		<category><![CDATA[ul]]></category>

		<guid isPermaLink="false">http://www.htmlsource.co.uk/css-property-float/</guid>
		<description><![CDATA[float will specify whether a column/element should float, shifting it to the right or left with surrounding content flowing around it.
Possible float values

float:left - this will float your element to the left hand side with all content flowing around it
float:right - this will float your element to the right hand side with all content flowing [...]]]></description>
		<wfw:commentRss>http://www.htmlsource.co.uk/css-property-float/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
