<?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>Christopher Balchin &#124; Website Developer &#187; CSS Stylesheets</title>
	<atom:link href="http://www.chrisbalchin.co.uk/category/blog/css/feed" rel="self" type="application/rss+xml" />
	<link>http://www.chrisbalchin.co.uk</link>
	<description>Website Developer</description>
	<lastBuildDate>Mon, 12 Apr 2010 23:39:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>CSS Example Markerless &#8216;no indent&#8217; Lists</title>
		<link>http://www.chrisbalchin.co.uk/blog/css/css-example-markerless-and-no-indent-lists</link>
		<comments>http://www.chrisbalchin.co.uk/blog/css/css-example-markerless-and-no-indent-lists#comments</comments>
		<pubDate>Tue, 12 Jan 2010 19:55:33 +0000</pubDate>
		<dc:creator>Christopher Balchin</dc:creator>
				<category><![CDATA[CSS Stylesheets]]></category>

		<guid isPermaLink="false">http://www.chrisbalchin.co.uk/?p=29</guid>
		<description><![CDATA[Removing the default marker that appear to the left of lists is useful when you wish to use lists purely for semantic reasons or to fully customize visually. The below CSS removes both the marker and changes the indentation of the list so it&#8217;s inline with normal content. The combination of &#8220;padding: 0&#8243; and &#8220;margin-left: [...]]]></description>
			<content:encoded><![CDATA[<p>Removing the default marker that appear to the left of lists is useful when you wish to use lists purely for semantic reasons or to fully customize visually. The below CSS removes both the marker and changes the indentation of the list so it&#8217;s inline with normal content. The combination of &#8220;padding: 0&#8243; and &#8220;margin-left: 0&#8243; ensures the indentation is consistent across browsers.</p>
<div class="span-7">
<h4>The HTML</h4>
<pre class="brush:php">
<ul>
<li>News</li>
<li>Sports</li>
<li>Politics</li>
</ul>
</pre>
</div>
<div class="span-7 last">
<h4>The CSS</h4>
<pre class="brush:php">
ul {
list-style-type: none;
padding: 0;
margin-left: 0;
}
</pre>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.chrisbalchin.co.uk/blog/css/css-example-markerless-and-no-indent-lists/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
