<?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>OQwebdesign</title>
	<atom:link href="http://www.oqwebdesign.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.oqwebdesign.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 07 Nov 2011 06:43:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>IE Hacks</title>
		<link>http://www.oqwebdesign.com/ie-hacks</link>
		<comments>http://www.oqwebdesign.com/ie-hacks#comments</comments>
		<pubDate>Wed, 25 Aug 2010 20:09:03 +0000</pubDate>
		<dc:creator>oquezada</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.oqwebdesign.com/?p=26</guid>
		<description><![CDATA[The following conditional comment is being picked up by IE5, IE5.5 and IE6: &#60;!--[if IE]&#62; &#60;link rel=&#34;stylesheet&#34; type=&#34;text/css&#34; href=&#34;all-ie.css&#34; /&#62; [...]]]></description>
			<content:encoded><![CDATA[<p>The following conditional comment is being picked up by IE5, IE5.5 and IE6:</p>
<pre class="brush: plain;">
&lt;!--[if IE]&gt;
  &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;all-ie.css&quot; /&gt;
&lt;![endif]--&gt;
</pre>
<p>The <span style="color: #66ff33;"><code>!ie</code></span> identifier allows the  property to be applied in <strong>IE 7 and below</strong>. It may or may  not work in future versions. Warning: this uses <span style="color: #ff0000;"><strong>INVALID CSS</strong></span>!</p>
<p>Example how to use this IE hack:</p>
<pre class="brush: css;">
.bluebox-area {
	width: 175px;
	height: 50px;
	top: 25px !ie; /* IE HACK for IE7 &amp; BELOW */
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.oqwebdesign.com/ie-hacks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Reset</title>
		<link>http://www.oqwebdesign.com/css-reset</link>
		<comments>http://www.oqwebdesign.com/css-reset#comments</comments>
		<pubDate>Tue, 20 Jul 2010 22:27:58 +0000</pubDate>
		<dc:creator>oquezada</dc:creator>
				<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://www.oqwebdesign.com/?p=1</guid>
		<description><![CDATA[The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font [...]]]></description>
			<content:encoded><![CDATA[<p>The goal of a reset stylesheet is to reduce browser inconsistencies in things like default line heights, margins and font sizes of headings, and so on. In a nutshell, a CSS reset removes default styling from page elements so that you are “starting fresh” with the attributes you choose to apply. This is important for two reasons. One, puts all browsers on a level playing field. Different browsers apply different default styling to elements, so if you are looking to have your website look the same in all the different browsers, a CSS reset is important. Two, it allows you to “think forwards” as far as applying attributes like margin and padding to page elements. Instead of having to “think backwords” in removing attributes from elements, you can only apply them to elements you know need them.</p>
<p>If you want to learn more about the CSS resets, Perishable Press has a pretty nice round up a lot of different ones. I’m going to leave the poll up for a few more days in case anyone else wants to weight in. Those of you that voted “custom”, care to share? For the next poll, I’m gonna try and figure out a way to get voting right inside the post so maybe it’ll work through the feed.</p>
<p>Here is a sample of my css reset</p>
<pre class="brush: css;">
/************************************************
*    CSS Reset                                  *
*    http://meyerweb.com/eric/tools/css/reset/  *
************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption,  tfoot, thead {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
/* remember to highlight inserts somehow! */
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
.clear {
	clear:both;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.oqwebdesign.com/css-reset/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

