<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	>
<channel>
	<title>Comments on: Treemaps from unordered lists and CSS</title>
	<atom:link href="http://decafbad.com/blog/2005/07/02/css-treemaps/feed" rel="self" type="application/rss+xml" />
	<link>http://decafbad.com/blog/2005/07/02/css-treemaps</link>
	<description>It's all spinning wheels and self-doubt until the first pot of coffee.</description>
	<pubDate>Sat, 11 Oct 2008 22:36:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7-hemorrhage</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: vinod ts</title>
		<link>http://decafbad.com/blog/2005/07/02/css-treemaps#comment-35974</link>
		<dc:creator>vinod ts</dc:creator>
		<pubDate>Thu, 07 Sep 2006 12:16:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=665#comment-35974</guid>
		<description>&lt;p&gt;hi,&lt;/p&gt;

&lt;p&gt;I was looking throught the sites for treemap using dom javascript  in browser. i am looking for something similar to the image in web page. i am getting the values like x,y cordinates and their respective width and height and their childs x,y cordinates and their width and height. Can u give some ideas how to start working on it.&lt;/p&gt;

&lt;p&gt;Thanks in Advance.&lt;/p&gt;

&lt;p&gt;Regards
Vinod T S&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>I was looking throught the sites for treemap using dom javascript  in browser. i am looking for something similar to the image in web page. i am getting the values like x,y cordinates and their respective width and height and their childs x,y cordinates and their width and height. Can u give some ideas how to start working on it.</p>
<p>Thanks in Advance.</p>
<p>Regards<br />
Vinod T S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fluffy</title>
		<link>http://decafbad.com/blog/2005/07/02/css-treemaps#comment-1747</link>
		<dc:creator>fluffy</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=665#comment-1747</guid>
		<description>&lt;ol&gt;
&lt;li&gt;&lt;p&gt;You can use a span whose style contains clear:both, or if you already have something which already goes after the list anyway you can set its style to clear:both&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can use container-relative sizes (e.g. width:33% height:25%) or font-relative sizes (width:15em height:10em).  Then you have to know how big they'll be in advance, though, or else things might overflow the box, though if you set overflow:auto then you'll get a handy little scrollbar.  (note that this is also one of the more annoying places if you want to support IE since it uses totally different semantics than the W3C standards.  unfortunately, even a vendor as major as my employer needs to cater to our 70% IE userbase, which is REALLY annoying with some of the CSS/DHTML tricks I'm working with right now.)&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;
</description>
		<content:encoded><![CDATA[<ol>
<li>
<p>You can use a span whose style contains clear:both, or if you already have something which already goes after the list anyway you can set its style to clear:both</p>
</li>
<li>
<p>You can use container-relative sizes (e.g. width:33% height:25%) or font-relative sizes (width:15em height:10em).  Then you have to know how big they&#8217;ll be in advance, though, or else things might overflow the box, though if you set overflow:auto then you&#8217;ll get a handy little scrollbar.  (note that this is also one of the more annoying places if you want to support IE since it uses totally different semantics than the W3C standards.  unfortunately, even a vendor as major as my employer needs to cater to our 70% IE userbase, which is REALLY annoying with some of the CSS/DHTML tricks I&#8217;m working with right now.)</p>
</li>
</ol>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anne</title>
		<link>http://decafbad.com/blog/2005/07/02/css-treemaps#comment-1748</link>
		<dc:creator>Anne</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=665#comment-1748</guid>
		<description>&lt;p&gt;For the first you can use generated content in combination with _height:1%; for Internet Explorer. Sometimes it's wise to use some other technique for clearing them though, depends on the situation.
(Other technique: http://annevankesteren.nl/2005/03/clearing-floats )&lt;/p&gt;

&lt;p&gt;For the second, you either want to make smart use of background images or the CSS table module that isn't supported by Internet Explorer.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>For the first you can use generated content in combination with _height:1%; for Internet Explorer. Sometimes it&#8217;s wise to use some other technique for clearing them though, depends on the situation.<br />
(Other technique: <a href="http://annevankesteren.nl/2005/03/clearing-floats" rel="nofollow">http://annevankesteren.nl/2005/03/clearing-floats</a> )</p>
<p>For the second, you either want to make smart use of background images or the CSS table module that isn&#8217;t supported by Internet Explorer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: drunkenbatman</title>
		<link>http://decafbad.com/blog/2005/07/02/css-treemaps#comment-1749</link>
		<dc:creator>drunkenbatman</dc:creator>
		<pubDate>Tue, 30 Nov 1999 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.decafbad.com/blog/?p=665#comment-1749</guid>
		<description>&lt;p&gt;very, very cool&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>very, very cool</p>
]]></content:encoded>
	</item>
</channel>
</rss>
