<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: CSS: Shortcuts</title>
	<atom:link href="http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/</link>
	<description></description>
	<pubDate>Sat, 30 Aug 2008 04:50:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Jennifer</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-12768</link>
		<dc:creator>Jennifer</dc:creator>
		<pubDate>Tue, 05 Oct 2004 12:26:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-12768</guid>
		<description>Saw this &lt;a href="http://tantek.com/log/2004/09.html#d07t1434"&gt;here&lt;/a&gt; (ALL the shortcuts)

&lt;strong&gt;font &lt;/strong&gt;
font-weight, font-style, font-variant, font-size, line-height, font-family

&lt;strong&gt;background &lt;/strong&gt;
background-color, background-image, background-repeat, background-attachment, background-position
 
&lt;strong&gt;margin&lt;/strong&gt;
margin-top, margin-right, margin-bottom, margin-left

&lt;strong&gt;padding&lt;/strong&gt;
padding-top, padding-right, padding-bottom, padding-left 

&lt;strong&gt;border &lt;/strong&gt;
border-width, border-style, border-color 

&lt;strong&gt;border-width&lt;/strong&gt;
border-top-width, border-right-width, border-bottom-width, border-left-width
 
&lt;strong&gt;border-style &lt;/strong&gt;
border-top-style, border-right-style, border-bottom-style, border-left-style 

&lt;strong&gt;border-color &lt;/strong&gt;
border-top-color, border-right-color, border-bottom-color, border-left-color
 
&lt;strong&gt;list-style&lt;/strong&gt; 
list-style-type, list-style-position, list-style-image 

&lt;strong&gt;outline &lt;/strong&gt;
outline-color, outline-style, outline-width</description>
		<content:encoded><![CDATA[<p>Saw this <a href="http://tantek.com/log/2004/09.html#d07t1434">here</a> (ALL the shortcuts)</p>
<p><strong>font </strong><br />
font-weight, font-style, font-variant, font-size, line-height, font-family</p>
<p><strong>background </strong><br />
background-color, background-image, background-repeat, background-attachment, background-position</p>
<p><strong>margin</strong><br />
margin-top, margin-right, margin-bottom, margin-left</p>
<p><strong>padding</strong><br />
padding-top, padding-right, padding-bottom, padding-left </p>
<p><strong>border </strong><br />
border-width, border-style, border-color </p>
<p><strong>border-width</strong><br />
border-top-width, border-right-width, border-bottom-width, border-left-width</p>
<p><strong>border-style </strong><br />
border-top-style, border-right-style, border-bottom-style, border-left-style </p>
<p><strong>border-color </strong><br />
border-top-color, border-right-color, border-bottom-color, border-left-color</p>
<p><strong>list-style</strong><br />
list-style-type, list-style-position, list-style-image </p>
<p><strong>outline </strong><br />
outline-color, outline-style, outline-width</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Julik</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11206</link>
		<dc:creator>Julik</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11206</guid>
		<description>background: url(image url) left top no-repeat;
essentially the most important here - horizontal position first, vertical position second (not vice-versa)</description>
		<content:encoded><![CDATA[<p>background: url(image url) left top no-repeat;<br />
essentially the most important here - horizontal position first, vertical position second (not vice-versa)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christine</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11207</link>
		<dc:creator>Christine</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11207</guid>
		<description>Another tip: if using dynamic link pseudo-classes, always make sure to remember to put them in correct order.

a:link, a:visited, a:hover, a:active. 

Great acronym to remember it is: LoVe HAte. 

And remember to add color/background-color both if using the other, otherwise UA's could over ride your style rules.
</description>
		<content:encoded><![CDATA[<p>Another tip: if using dynamic link pseudo-classes, always make sure to remember to put them in correct order.</p>
<p>a:link, a:visited, a:hover, a:active. </p>
<p>Great acronym to remember it is: LoVe HAte. </p>
<p>And remember to add color/background-color both if using the other, otherwise UA&#8217;s could over ride your style rules.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aldark</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11205</link>
		<dc:creator>Aldark</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11205</guid>
		<description>One thing I would recommend to CSS novices is to intially separate your information with a new line - then when it works modify it. Only because it tends to be easier to find an error or where you want to modify initially.
&lt;a href="http://www.w3schools.com" target="_blank"&gt;W3Schools.com&lt;/a&gt; is a great CSS reference site.</description>
		<content:encoded><![CDATA[<p>One thing I would recommend to CSS novices is to intially separate your information with a new line - then when it works modify it. Only because it tends to be easier to find an error or where you want to modify initially.<br />
<a href="http://www.w3schools.com" target="_blank">W3Schools.com</a> is a great CSS reference site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nate</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11204</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11204</guid>
		<description>I can never remember the acronyms, but another way to remember the margin/padding number order is to just think of a clock - starting at high noon go clockwise = top, right, bottom, left (:00, :15, :30, :45). For whatever reason that method always stuck with me. Here's &lt;a href="http://www.sorehead.org/css/shorthand.html"&gt;a page&lt;/a&gt; with a little more shortcut info.</description>
		<content:encoded><![CDATA[<p>I can never remember the acronyms, but another way to remember the margin/padding number order is to just think of a clock - starting at high noon go clockwise = top, right, bottom, left (:00, :15, :30, :45). For whatever reason that method always stuck with me. Here&#8217;s <a href="http://www.sorehead.org/css/shorthand.html">a page</a> with a little more shortcut info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rio</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11203</link>
		<dc:creator>rio</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11203</guid>
		<description>nice blog! just wanted to drop a notice that the International Webloggers' Day is June 9, 2004! http://www.intlblogday.tk</description>
		<content:encoded><![CDATA[<p>nice blog! just wanted to drop a notice that the International Webloggers&#8217; Day is June 9, 2004! <a href="http://www.intlblogday.tk" rel="nofollow">http://www.intlblogday.tk</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jenna</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11202</link>
		<dc:creator>Jenna</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11202</guid>
		<description>A good way to remember the margin/padding order is TRouBLe. Top. Right. Bottom. Left.</description>
		<content:encoded><![CDATA[<p>A good way to remember the margin/padding order is TRouBLe. Top. Right. Bottom. Left.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PEP</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11200</link>
		<dc:creator>PEP</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11200</guid>
		<description>the shortcut for margin &#038; padding also works for top and bottom:

padding: 2px 10px;

will put 2px on top and bottom, 10px on left and right</description>
		<content:encoded><![CDATA[<p>the shortcut for margin &#038; padding also works for top and bottom:</p>
<p>padding: 2px 10px;</p>
<p>will put 2px on top and bottom, 10px on left and right</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: theresa</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11201</link>
		<dc:creator>theresa</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11201</guid>
		<description>There's also a background shortcut to declare all of the background properties:

background: #ffffff url(image.gif) no-repeat top left;

or other variants.</description>
		<content:encoded><![CDATA[<p>There&#8217;s also a background shortcut to declare all of the background properties:</p>
<p>background: #ffffff url(image.gif) no-repeat top left;</p>
<p>or other variants.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11197</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptygoddess.com/archives/2004/04/08/css-shortcuts/#comment-11197</guid>
		<description>Oh, man, that font-style shortcut is great; I had just stumbled across the border hack a few days ago (border: 1px solid #000;), but the font-style cousin to it is even better.  Thanks for posting this!</description>
		<content:encoded><![CDATA[<p>Oh, man, that font-style shortcut is great; I had just stumbled across the border hack a few days ago (border: 1px solid #000;), but the font-style cousin to it is even better.  Thanks for posting this!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.466 seconds -->
