<?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>ourlil.com &#187; quirk</title>
	<atom:link href="http://OurLil.com/blog/category/quirk/feed/" rel="self" type="application/rss+xml" />
	<link>http://OurLil.com</link>
	<description>A web site for tutti noi (all of us!)</description>
	<lastBuildDate>Mon, 26 Jul 2010 21:39:40 +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>The poetry of Donald Rumsfeld. &#8211; By Hart Seely &#8211; Slate Magazine</title>
		<link>http://OurLil.com/blog/the-poetry-of-donald-rumsfeld-by-hart-seely-slate-magazine/160/</link>
		<comments>http://OurLil.com/blog/the-poetry-of-donald-rumsfeld-by-hart-seely-slate-magazine/160/#comments</comments>
		<pubDate>Thu, 12 Jun 2008 18:35:06 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Lorem]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[history]]></category>
		<category><![CDATA[ipsum]]></category>
		<category><![CDATA[loremipsum]]></category>
		<category><![CDATA[odd]]></category>
		<category><![CDATA[politics]]></category>
		<category><![CDATA[quirk]]></category>
		<category><![CDATA[whoa!]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/06/12/the-poetry-of-donald-rumsfeld-by-hart-seely-slate-magazine/</guid>
		<description><![CDATA[The poems that follow are the exact words of the defense secretary, as taken from the official transcripts on the Defense Department Web site. The Unknown As we know, There are known knowns. There are things we know we know. We also know There are known unknowns. That is to say We know there are [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>The poems that follow are the exact words of the defense secretary, as taken from the official transcripts on the Defense Department <a href="http://dod.gov/">Web site</a>.</p>
<blockquote><p><img src="http://img.slate.com/media/15/030402_Rumsfeld_poetry.jpg" alt="Donald 'Rummy' Rumsfeld" align="right" border="0" hspace="10" vspace="10" /><strong>The Unknown<br />
</strong>As we know,<br />
There are known knowns.<br />
There are things we know we know.<br />
We also know<br />
There are known unknowns.<br />
That is to say<br />
We know there are some things<br />
We do not know.<br />
But there are also unknown unknowns,<br />
The ones we don&#8217;t know<br />
We don&#8217;t know.</p>
<p><em>â€”Feb. 12, 2002, Department of Defense news briefing</em></p></blockquote>
</blockquote>
<p>More of this insanity is available: <a href="http://www.slate.com/id/2081042/">The poetry of Donald Rumsfeld. &#8211; By Hart Seely &#8211; Slate Magazine</a></p>
<p>What he didn&#8217;t mention, is that there are also <em>unknown knowns</em>! That is to say, things we don&#8217;t know we know.</p>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/the-poetry-of-donald-rumsfeld-by-hart-seely-slate-magazine/160/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CSS Hacks and IE7</title>
		<link>http://OurLil.com/blog/css-hacks-and-ie7/158/</link>
		<comments>http://OurLil.com/blog/css-hacks-and-ie7/158/#comments</comments>
		<pubDate>Fri, 30 May 2008 06:43:22 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Hacks]]></category>
		<category><![CDATA[MSIE]]></category>
		<category><![CDATA[Trends]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[WebTech]]></category>
		<category><![CDATA[quirk]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/2008/05/29/css-hacks-and-ie7/</guid>
		<description><![CDATA[This is a really great article on how to hack IE7. CSS Hacks and IE7 The Child Selector This selector uses a &#8220;&#62;&#8221; symbol as a &#8220;combinator&#8221; that is placed between two parts of a CSS selector, and indicates that the target of the rule is the element on the right side of the &#8220;&#62;&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>This is a really great article on how to hack IE7. <a href="http://www.positioniseverything.net/articles/ie7-dehacker.html">CSS Hacks and IE7</a></p>
<ul>
<li><a href="http://www.w3.org/TR/CSS21/selector.html#x13">The Child Selector</a></li>
<li>
<blockquote><p> This selector uses a &#8220;&gt;&#8221; symbol as a &#8220;combinator&#8221; that is  placed between two parts  of a CSS selector, and indicates that the target of the rule is the element on the  right side of the &#8220;&gt;&#8221; combinator, but <em>only</em> when that element is a direct child of the element to the left of the combinator. Thus, the  selector <strong>table&gt;td</strong> can never target any element, because TD&#8217;s are <em>never</em> direct children of tables, only of TR&#8217;s. On the other hand, the selector <strong>tr&gt;td</strong> would select <em>every</em> TD on the page, since  all TD&#8217;s are direct children of TR&#8217;s.</p>
<p>The main difference between the Child combinator and the familiar space combinator is that the space combinator is a &#8220;descendant&#8221; combinator, meaning that  the element to the right of the space only needs to be between the tags of the  element on the left to be selected. So with the selector  <strong>tableÂ td</strong>, all TD&#8217;s will selected, since TD&#8217;s always fall  between the tag pair of one table or another.</p>
<p>The Child combinator is quite useful for targeting rules to direct children of  an element, <em>without</em> also targeting the more deeply nested descendants as well. Unfortunately, up until IE7 there was no point in using it for its intended purpose,  since so few of the viewing public would get the benefits of the styling.</p></blockquote>
</li>
<li>
<h5><a href="http://www.w3.org/TR/CSS21/selector.html#adjacent-selectors">The Adjacent Sibling Selector</a></h5>
<ul>
<li> This selector is a &#8220;+&#8221; combinator symbol placed between parts of a selector, and is very  similar to the Child combinator. The only difference between the two is that while the Child combinator points to direct children of an element, the Adjacent Sibling combinator points to an element which directly <em>follows</em> another element in the source.<br />
<blockquote><p>Thus the selector <strong>tr+td</strong> cannot select anything, because no TD ever directly follows a TR. Instead, TD&#8217;s are contained <em>inside</em> TR&#8217;s, and that  is not considered to be &#8220;following&#8221; the TR. However, the selector <strong>tr+tr</strong> would select any TR that directly followed another TR, which means that every TR within a table would be selected except for the very first TR in that table.</p>
<p>Get it? An adjacent sibling element not only follows its previous sibling, but is  also completely separate from it. Further, if two DIV&#8217;s are in sequence and each  contains a paragraph, those two paragraphs are <em>not</em> considered siblings, because they  reside in different parent elements. The fact that one follows another means nothing unless the following sibling starts at the same point where the previous sibling ends.</p></blockquote>
</li>
</ul>
</li>
<li><strong>Star HTML</strong></li>
</ul>
<blockquote><p>Oh, you want to know about that structural thing? Well, the hack that uses  it is called the <strong>star-html</strong> hack, and it works by taking advantage of an oddity in Explorer&#8217;s treatment of the <strong>DocumentÂ ObjectÂ Model</strong>,  or <strong>DOM</strong> for short. Simply stated, all web pages start with a root element called <strong>html</strong>, which then contains two children, the <strong>head</strong> and the <strong>body</strong> elements. Those two then contain other children, and so forth.</p></blockquote>
<ul>
<li>
<blockquote><p>Most browsers obey this arrangement, but <strong>Explorer</strong> for both  <strong>Win</strong> and <strong>Mac</strong> do not. They seem to think there is a mysterious element <em>enclosing the html element!</em> It&#8217;s pretty strange, but in fact this extra outer &#8220;root&#8221; element has no apparent ill effects on web pages, and remained unnoticed for years, until  <a href="http://www.info.com.ph/%7Eetan/w3pantheon/style/csshub.html">EdwardsonÂ Tan</a> began experimenting with CSS selectors. He found that a selector written as  <strong>*Â htmlÂ Â .targetelement</strong> would apply the styles to <strong>.targetelement</strong>, but only for the IE browsers.</p>
<p>Think about it. That star is the &#8220;universal&#8221; selector, so it points to any element, but it comes <em>before</em> <strong>html</strong>. Therefore,  the full selector in effect says: &#8220;Select <strong>.targetelement</strong> when it is contained within <strong>html</strong>, <em>and</em> when <strong>html</strong> is  contained within any other element&#8221;.</p></blockquote>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/css-hacks-and-ie7/158/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ALA&#8217;s New Print Styles + hasLayout</title>
		<link>http://OurLil.com/blog/alas-new-print-styles-haslayout/105/</link>
		<comments>http://OurLil.com/blog/alas-new-print-styles-haslayout/105/#comments</comments>
		<pubDate>Mon, 03 Mar 2008 16:24:28 +0000</pubDate>
		<dc:creator>webmaestro</dc:creator>
				<category><![CDATA[MSIE]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[alistapart.com]]></category>
		<category><![CDATA[nifty]]></category>
		<category><![CDATA[quirk]]></category>
		<category><![CDATA[standards]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://clay.freedomblogging.com/alas-new-print-styles-haslayout/</guid>
		<description><![CDATA[Perplexing little CSS issue that&#8217;s dogged me for ages: Why does MSIE have weird positioning some times? It could be because of hasLayout, and all you need to do, is apply position:relative to the CSS declaration: A List Apart: Articles: ALA&#8217;s New Print Styles The only little oddity here is position: relative. I included that [...]]]></description>
			<content:encoded><![CDATA[<p>Perplexing little CSS issue that&#8217;s dogged me for ages: Why does MSIE have weird positioning some times? It could be because of  <code>hasLayout</code>, and all you need to do, is apply <code>position:relative</code> to the CSS declaration:</p>
<p><a href="http://www.alistapart.com/articles/alaprintstyles/">A List Apart: Articles: ALA&#8217;s New Print Styles</a></p>
<blockquote><p> The only little oddity here is position: relative. I included that because IE/Win has a tendency to make elements disappear if you pull them upward like this. The cure is to position them, which I suspect triggers the hasLayout flag. I don&#8217;t pretend to understand all the nuances of hasLayout, but <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/IETechCol/cols/dnexpie/expie20050831.asp" target="_blank">recent information from Microsoft</a>  and <a href="http://www.satzansatz.de/cssd/onhavinglayout.html" target="_blank">third-party sources</a>  has shed quite a bit of light on the subject&#8211;it would appear that many of the layout problems that bedevil us in IE/Win are the result of an element not having hasLayout.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://OurLil.com/blog/alas-new-print-styles-haslayout/105/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
