<?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>J.P. McGarrity.com &#187; css/xhtml</title>
	<atom:link href="http://jpmcgarrity.com/blog/category/cssxhtml/feed/" rel="self" type="application/rss+xml" />
	<link>http://jpmcgarrity.com/blog</link>
	<description>Focusing on the Front End</description>
	<lastBuildDate>Sat, 30 Apr 2011 16:40:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS Transform Tool</title>
		<link>http://jpmcgarrity.com/blog/2011/03/css-transform-tool/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/css-transform-tool/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 19:35:15 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[css/xhtml]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=701</guid>
		<description><![CDATA[
Here is a rough proof of concept demo I created to show the CSS3 transform property.
Click here to see demo
]]></description>
			<content:encoded><![CDATA[<p><img src="http://jpmcgarrity.com/blog/wp-content/uploads/2011/03/transfrom.png" alt="transfrom" title="transfrom" width="328" height="405" class="alignnone size-full wp-image-702" /><br />
Here is a rough proof of concept demo I created to show the CSS3 transform property.</p>
<p><a href="http://jpmcgarrity.com/examples/css/transform/transform.html">Click here to see demo</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/css-transform-tool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pseudo Elements :before and :after with CSS 2.1</title>
		<link>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/</link>
		<comments>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/#comments</comments>
		<pubDate>Thu, 03 Mar 2011 13:10:43 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css 2.1]]></category>
		<category><![CDATA[css/html]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=698</guid>
		<description><![CDATA[Here is a quick example of how to use Pseudo elements &#8220;:before&#8221; and &#8220;:after&#8221; with css.
			li{
				display:block;
			}
			li:before{
				content:"This is red from :before";
				color:red;
			}
			li:after{
				content:"This is blue from after";
				color:blue;
			}
Click here for the demo page
]]></description>
			<content:encoded><![CDATA[<p>Here is a quick example of how to use Pseudo elements &#8220;:before&#8221; and &#8220;:after&#8221; with css.<br />
<code>			li{<br />
				display:block;<br />
			}<br />
			li:before{<br />
				content:"This is red from :before";<br />
				color:red;<br />
			}<br />
			li:after{<br />
				content:"This is blue from after";<br />
				color:blue;<br />
			}</code></p>
<p><a href="http://jpmcgarrity.com/examples/css/pseudo/pseudoBeforeAfter.html">Click here for the demo page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2011/03/pseudo-elements-before-and-after-with-css-2-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Advanced CSS Attribute Selector Demo</title>
		<link>http://jpmcgarrity.com/blog/2010/03/advanced-css-attribute-selector-demo/</link>
		<comments>http://jpmcgarrity.com/blog/2010/03/advanced-css-attribute-selector-demo/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 19:22:09 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[CSS 3]]></category>
		<category><![CDATA[css/xhtml]]></category>
		<category><![CDATA[Attribute selectors]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=597</guid>
		<description><![CDATA[Recently a back end developer asked me with there was a way to use a wild card in CSS that would allow him to generate ID&#8217;s on the fly. The solution I came up with was to use an attribute selector.
When using attribute selectors in CSS the name before the &#8220;&#124;&#8221; is the attribute targeted. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently a back end developer asked me with there was a way to use a wild card in CSS that would allow him to generate ID&#8217;s on the fly. The solution I came up with was to use an attribute selector.</p>
<p>When using attribute selectors in CSS the name before the &#8220;|&#8221; is the attribute targeted. In this case &#8220;id&#8221; is used but we could have just as easily used &#8220;rel&#8221;, &#8220;input&#8221;, &#8220;value&#8221; etc.</p>
<p>The text after the &#8220;|&#8221; is what the attribute must start with to be read. The example uses &#8220;section&#8221;. Each &#8220;id&#8221; in the html that starts with &#8220;section&#8221; will be styled. Some id&#8217;s use more specific code in certain div&#8217;s to give them unique colors showing how the cascading works in the CSS file.</p>
<p>Here is the solution:</p>
<p><a href="http://jpmcgarrity.com/examples/css/advanced_css_attributes/">View the Demo</a></p>
<p><strong>CSS Code</strong><br />
<code>[id|="section"]{<br />
					border: 10px solid #999;<br />
					margin:10px 0;<br />
					background:black;<br />
					width:	200px;<br />
					height:	200px;<br />
				}<br />
[id|="section-item"]{<br />
					background:green;<br />
				}<br />
#section-1{<br />
					background:red;<br />
				}<br />
#section-2{<br />
					background:blue;<br />
				}<br />
#section-3{<br />
					background:yellow;<br />
				}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2010/03/advanced-css-attribute-selector-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Font CSS Substitution Methods</title>
		<link>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/</link>
		<comments>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 18:30:36 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=553</guid>
		<description><![CDATA[
Many new methods of font substitution are coming of the wood work and old methods are now getting a second look.
@font-face method
The @font-face method was added to the CSS2 spec but then not recommended in CSS2.1. However with CSS3 it&#8217;s back and supported by most popular modern browsers. Read about @font-face at W3.org.
This method requires [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-565" title="font-image" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/09/font-image1.gif" alt="font-image" width="675" height="167" /></p>
<p>Many new methods of font substitution are coming of the wood work and old methods are now getting a second look.</p>
<h4>@font-face method</h4>
<p>The @font-face method was added to the CSS2 spec but then not recommended in CSS2.1. However with CSS3 it&#8217;s back and supported by most popular modern browsers. Read about @font-face at <a href="http://www.w3.org/TR/css3-fonts/#the-font-face-rule">W3.org</a>.</p>
<p>This method requires the font being loaded on the server and will cause a slight flickering of the font rendering while it is stored in the cache. The plus side of this method is it&#8217;s easy to implement and requires no JavaScript.</p>
<p>Here is an example of @font-face being used. <a href="http://jpmcgarrity.com/examples/css/fonts/">Click Here </a></p>
<h6>Sample CSS code used (Note: font is stored on the server)</h6>
<p><code>@font-face {<br />
font-family: 'BrushScript';<br />
src: url('BrushScript.ttf') format("truetypefont");<br />
}<br />
/* for IE */<br />
@font-face {<br />
font-family: 'BrushScript';<br />
src: url(BrushScript.ttf);<br />
}<br />
body {<br />
font-family: 'BrushScript', helvetica; /*degrades to a standard web font if unavailable */<br />
font-size:1em;<br />
}</code></p>
<h4>Cufon JavaScript Method</h4>
<p>This currently my personal favorite method. No font is stored on the server and there is no flicker of the font while loading. The wizard also provides many options and settings so you can customize the needs for your site.</p>
<h6>Easy to add</h6>
<p>Cufon provides a simple method for converting fonts on your local machine into a js file that you include in the header along with the Cufon script. A simple replace call is used to substitute the font. <a href="http://cufon.shoqolate.com/generate/">Read more about Cufon here</a></p>
<p><a href="http://jpmcgarrity.com/examples/css/fonts2/">Example of the Cufon Method »</a></p>
<h6>Example Header Code</h6>
<p><code>&lt;script src="cufon-yui.js" type="text/javascript"&gt;&lt;/script&gt; &lt;script src="AGaramondPro_400-AGaramondPro_700-AGaramondPro_italic_400.font.js" type="text/javascript"&gt;&lt;/script&gt;<br />
&lt;script type="text/javascript"&gt;Cufon.replace('h1');Cufon.replace('p');&lt;/script&gt;</code></p>
<h4>Background Image method</h4>
<p>This method is good for replacing a few headers and best method to use with the logo of your site. Detailed px to px cross browser look with the design is needed while the code remains semantic. This method has been implemented in this version of my site since for major section H1 headers and the logo of the site.</p>
<h6>XHTML Example Code</h6>
<p><code>&lt;h3 id="Portfolio"&gt;Portfolio&lt;/h3&gt;</code></p>
<h6>CSS Example Code</h6>
<p><code>h3#Portfolio<br />
{<br />
background:url('/portfolio/2009/gfx/title_portfolio-trans.png') no-repeat;<br />
text-indent: -9999px;<br />
width:229px;<br />
height:61px;<br />
}</code></p>
<p>This will work with all browsers. A list will be added shortly of the other methods and their support.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/09/font-css-substitution-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Attribute Selectors</title>
		<link>http://jpmcgarrity.com/blog/2009/08/css-attribute-selectors/</link>
		<comments>http://jpmcgarrity.com/blog/2009/08/css-attribute-selectors/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 13:10:02 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[css/xhtml]]></category>
		<category><![CDATA[Attribute selectors]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=478</guid>
		<description><![CDATA[
CSS Attribute selectors are a great way to target specific elements in your page and apply styles to them with out have go back and opening up the template file and changing code.
I find them extremely useful for creating form css.
There are 6 different types of attribute selectors

[att=value]
The attribute has to have the exact value [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-489" title="computer_controls" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/08/computer_controls1.jpg" alt="computer_controls" width="500" height="323" /></p>
<p>CSS Attribute selectors are a great way to target specific elements in your page and apply styles to them with out have go back and opening up the template file and changing code.</p>
<p>I find them extremely useful for creating form css.</p>
<h4>There are 6 different types of attribute selectors</h4>
<ul>
<li>[att=value]<br />
The attribute has to have the exact value specified.</li>
<li>[att~=value]<br />
The attribute’s value needs to be a whitespace separated list of words (for example, class=”title featured home”), and one of the words is exactly the specified value.</li>
<li>[att|=value]<br />
The attribute’s value is exactly “value” or starts with the word “value” and is immediately followed by “-”, so it would be “value-”.</li>
<li>[att^=value]<br />
The attribute’s value starts with the specified value.</li>
<li>[att$=value]<br />
The attribute’s value ends with the specified value.</li>
<li>[att*=value]<br />
The attribute’s value contains the specified value.</li>
</ul>
<p>Here is an <a href="http://jpmcgarrity.com/examples/css/css_attributes/index.html">example page</a> where I have formatted elements with attribute selectors only.</p>
<h4>Sample CSS Used</h4>
<p><code style="height:500px">			&lt;style type="text/css" media="screen"&gt;<br />
			p[tile='para1'] {<br />
				color:red;<br />
				}<br />
			input[type="text"] {<br />
				width: 200px;<br />
				background-color: #DDD;<br />
				border:0px;<br />
				display:block;<br />
				padding:3px;<br />
				}<br />
			input[type="submit"] {<br />
				width: 200px;<br />
				background-color: #000;<br />
				border:0px;<br />
				display:block;<br />
				padding:5px;<br />
				color:#fff;<br />
				margin-top:5px;<br />
				}<br />
			a[href$='.jpg']{<br />
				background:green;<br />
				color:#fff;<br />
			}<br />
			&lt;/style&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/08/css-attribute-selectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BluePrint CSS Framework (Updated)</title>
		<link>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework/</link>
		<comments>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 19:25:32 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding tool]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=314</guid>
		<description><![CDATA[Recently been reading alot about CSS frameworks that are working off a grid that are easy to use and work with&#8230; Sort of been mulling around with trying one for my next project. After reviewing a few of them from this post. I&#8217;ve decided to give BluePrint a shot.
BluePrint seems very easy to work with. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-317" title="blueprint" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/blueprint2.gif" alt="blueprint" width="473" height="150" />Recently been reading alot about CSS frameworks that are working off a grid that are easy to use and work with&#8230; Sort of been mulling around with trying one for my next project. After reviewing a few of them from this <a href="http://speckyboy.com/2008/03/28/top-12-css-frameworks-and-how-to-understand-them/">post</a>. I&#8217;ve decided to give BluePrint a shot.</p>
<p>BluePrint seems very easy to work with. It&#8217;s just the matter of how best to work with the framework while adding custom content around it. view the test pages <a href="http://jpmcgarrity.com/joshuaclayton-blueprint-css-3980cbee3cedaffc905098ecc8b8c6d999c2fcf0/tests/">here</a> that come with the default install. Pretty nice grid working cross browser. (Update) Some great plugins for the framework can be found <a href="http://github.com/joshuaclayton/blueprint-css/tree/master/blueprint/plugins">here</a>.</p>
<p>Over the next week or so I&#8217;m going to remake this entire blog with BluePrint and updating this post with progress and thoughts on about the CCS framework. Stay Tuned&#8230;</p>
<p><strong>Update</strong></p>
<p>06/2/09</p>
<p>Today I have been playing around for a couple hours with the framework, so far so good&#8230; its been easy to align copy and set widths. Only issues have come across so far are using &lt;ul/&gt; for navigation and have divs floated to the right.  Still TBD if the framework supports this type of functionality or not.</p>
<p>06/3/09</p>
<p>After playing around with framework for a couple hours I was able to get a decent understanding of things. Like many CSS designers I have had a self made framework that I used to approach projects. However BluePrint is definitely a nice tool to be using. After 3-4 hours of playing around I became comfortable using it&#8230; the only thing that is a little hard to predict is how it will act with my own styles that I&#8217;ve been adding.</p>
<p>More updates to come&#8230;</p>
<p><img class="aligncenter size-full wp-image-323" title="blueprint1" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/blueprint11.gif" alt="blueprint1" width="590" height="565" /></p>
<p>You can view progress of the updated design in real time by clicking <a href="http://jpmcgarrity.com/blueprint/blog/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BluePrint CSS Framework (Updated)</title>
		<link>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework-2/</link>
		<comments>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework-2/#comments</comments>
		<pubDate>Mon, 01 Jun 2009 19:25:32 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding tool]]></category>
		<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=314</guid>
		<description><![CDATA[Recently been reading alot about CSS frameworks that are working off a grid that are easy to use and work with&#8230; Sort of been mulling around with trying one for my next project. After reviewing a few of them from this post. I&#8217;ve decided to give BluePrint a shot.
BluePrint seems very easy to work with. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-317" title="blueprint" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/blueprint2.gif" alt="blueprint" width="473" height="150" />Recently been reading alot about CSS frameworks that are working off a grid that are easy to use and work with&#8230; Sort of been mulling around with trying one for my next project. After reviewing a few of them from this <a href="http://speckyboy.com/2008/03/28/top-12-css-frameworks-and-how-to-understand-them/">post</a>. I&#8217;ve decided to give BluePrint a shot.</p>
<p>BluePrint seems very easy to work with. It&#8217;s just the matter of how best to work with the framework while adding custom content around it. view the test pages <a href="http://jpmcgarrity.com/joshuaclayton-blueprint-css-3980cbee3cedaffc905098ecc8b8c6d999c2fcf0/tests/">here</a> that come with the default install. Pretty nice grid working cross browser. (Update) Some great plugins for the framework can be found <a href="http://github.com/joshuaclayton/blueprint-css/tree/master/blueprint/plugins">here</a>.</p>
<p>Over the next week or so I&#8217;m going to remake this entire blog with BluePrint and updating this post with progress and thoughts on about the CCS framework. Stay Tuned&#8230;</p>
<p><strong>Update</strong></p>
<p>06/2/09</p>
<p>Today I have been playing around for a couple hours with the framework, so far so good&#8230; its been easy to align copy and set widths. Only issues have come across so far are using &lt;ul/&gt; for navigation and have divs floated to the right.  Still TBD if the framework supports this type of functionality or not.</p>
<p>06/3/09</p>
<p>After playing around with framework for a couple hours I was able to get a decent understanding of things. Like many CSS designers I have had a self made framework that I used to approach projects. However BluePrint is definitely a nice tool to be using. After 3-4 hours of playing around I became comfortable using it&#8230; the only thing that is a little hard to predict is how it will act with my own styles that I&#8217;ve been adding.</p>
<p>More updates to come&#8230;</p>
<p><img class="aligncenter size-full wp-image-323" title="blueprint1" src="http://jpmcgarrity.com/blog/wp-content/uploads/2009/06/blueprint11.gif" alt="blueprint1" width="590" height="565" /></p>
<p>You can view progress of the updated design in real time by clicking <a href="http://jpmcgarrity.com/blueprint/blog/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/06/blueprint-css-framework-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FLEX &amp; MXML The next logical step for XHTML coders?</title>
		<link>http://jpmcgarrity.com/blog/2009/04/mxml-the-next-logical-step-for-xhtml-coders/</link>
		<comments>http://jpmcgarrity.com/blog/2009/04/mxml-the-next-logical-step-for-xhtml-coders/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 17:05:23 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[coding]]></category>
		<category><![CDATA[css/xhtml]]></category>
		<category><![CDATA[flex]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=157</guid>
		<description><![CDATA[I'll be perfectly honest.. I didn't know much about Adobe Flex. I knew that it was more or less an all coding method for Flash developers and the early adopters using js/ajax really enjoyed working with it. Flex based sites had always impressed me but the idea on how to make them seemed to complex. Since Flash MX had been released I had little experiance writing any sort of AS other then animating banners or updating AS for all ready running sites.]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone" src="http://robot6.comicbookresources.com/wp-content/uploads/2009/03/flex_mentallo1of4_-_00.jpg" alt="" width="350" height="554" /></p>
<p>I&#8217;ll be perfectly honest.. I didn&#8217;t know much about Adobe Flex. I knew that it was more or less an all coding method for Flash developers and the early adopters using JS/AJAX really enjoyed working with it. Flex based sites had always impressed me but the idea on how to make them seemed to complex. Since Flash MX had been released I had little experience writing any sort of AS other then animating banners or updating AS for already running sites.</p>
<p>Over the past couple of days I have been messing around with it and am truly having fun writing the code. My main focus for the last few years now has been XHTML/CSS as well as design and with basic understandings of Flash. Moving forward to improve my skill set Flex seems to be a fun tool to learn and a good next step for someone with a similar skill set.</p>
<p>If your interested in playing around with Flex here is a link that really helped me get started <a href="http://www.pixelate.de/blog/setting-up-a-as3-project-in-textmate">Setting up a AS3 Project in Textmate.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/04/mxml-the-next-logical-step-for-xhtml-coders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Starting Place for Your CSS</title>
		<link>http://jpmcgarrity.com/blog/2009/03/starting-place-for-you-css/</link>
		<comments>http://jpmcgarrity.com/blog/2009/03/starting-place-for-you-css/#comments</comments>
		<pubDate>Wed, 11 Mar 2009 00:49:30 +0000</pubDate>
		<dc:creator>J.P.</dc:creator>
				<category><![CDATA[css/xhtml]]></category>

		<guid isPermaLink="false">http://jpmcgarrity.com/blog/?p=8</guid>
		<description><![CDATA[When starting a new project its a good idea to have some css starting templates.
Here is one that I&#8217;ve been using for the past couple of years. Using the following it will help ensure that different browsers will react the same to margins, paddings, etc that you add to your other CSS files.
/* Even the [...]]]></description>
			<content:encoded><![CDATA[<p>When starting a new project its a good idea to have some css starting templates.<br />
Here is one that I&#8217;ve been using for the past couple of years. Using the following it will help ensure that different browsers will react the same to margins, paddings, etc that you add to your other CSS files.</p>
<pre><code>/* Even the playing field in all browsers */

html, body, ul, ol, li, p, img,
h1, h2, h3, h4, h5, h6,
form, fieldset, table, a {
margin:						0;
padding:					0;
border:						0;
}

/* Firefox imaage selection fix */
*:focus {outline: none}

/*blockquote:before, blockquote:after,
q:before, q:after {
	content:"" "";
}
blockquote, q {
	quotes: "" "";
}*/

br
{
	clear:both;
}

blockquote:before, blockquote:after {
color: #fff;
display: block;
font-size: 300%;
}

blockquote:before {
content: open-quote;
height: 0;
margin-left: -0.55em;
}

blockquote:after {
content: close-quote;
margin-top: -20px;
margin-left: 100</code></pre>
<p>Find the css file here.</p>
<p><a href="http://jpmcgarrity.com/portfolio/2009/css/starter.css">Download CSS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jpmcgarrity.com/blog/2009/03/starting-place-for-you-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

