<?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>Frozentux &#187; JavaScript</title>
	<atom:link href="http://www.frozentux.net/tag/javascript/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.frozentux.net</link>
	<description>Yet another site</description>
	<lastBuildDate>Thu, 13 Oct 2011 19:37:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Site update finally here!</title>
		<link>http://www.frozentux.net/2009/10/site-update-finally-here/</link>
		<comments>http://www.frozentux.net/2009/10/site-update-finally-here/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 17:39:05 +0000</pubDate>
		<dc:creator>Oskar Andreasson</dc:creator>
				<category><![CDATA[Frozentux.net]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[wordpress.org]]></category>

		<guid isPermaLink="false">http://www.frozentux.net/?p=412</guid>
		<description><![CDATA[I finally got around to finishing up a new site. As some of you may remember, I started over a year ago with rewriting the entire site from scratch after a year of pretty much not having time to fix the final touches. On top of this I realized that the site would still require [...]]]></description>
			<content:encoded><![CDATA[<p>I finally got around to finishing up a new site. As some of you may remember, I started over a year ago with rewriting the entire site from scratch after a year of pretty much not having time to fix the final touches. On top of this I realized that the site would still require a lot of time to update and maintain, which I realize was not in my main interest. So I decided to try out a few &#8220;pre-built&#8221; solutions and got hooked on wordpress. This is the final setup i&#8217;m going with. I will update the site more and more, but to get the site rolling, I decided to get it published as soon as possible.</p>
<p>To begin with, there isn&#8217;t much new material on the site, but this will change with some time. I have several papers and smaller projects I&#8217;d like to publish, and that I will have the ability/time to publish with the new site framework. Until then, I sincerely hope you will enjoy the new site. Any comments, please let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frozentux.net/2009/10/site-update-finally-here/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Tired of Javascript/CSS</title>
		<link>http://www.frozentux.net/2008/08/tired-of-javascriptcss/</link>
		<comments>http://www.frozentux.net/2008/08/tired-of-javascriptcss/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 19:42:00 +0000</pubDate>
		<dc:creator>Oskar Andreasson</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://fs1/fs1/?p=172</guid>
		<description><![CDATA[CSS is not my strong side, actually web development isn&#8217;t at all, yet I have this bad habit of wanting to learn things I don&#8217;t know since before. That being said, not sure if i got this right. Putting an absolute object (div for example) inside a relative object makes for an unhappy combination. Problem [...]]]></description>
			<content:encoded><![CDATA[<p>CSS is not my strong side, actually web development isn&#8217;t at all, yet I have this bad habit of wanting to learn things I don&#8217;t know since before. That being said, not sure if i got this right. Putting an absolute object (div for example) inside a relative object makes for an unhappy combination. Problem is that the outer container does not resize for the absolute object (depending on how you interpret the standards, I guess this is correct behaviour).</p>
<p>Take the following rather long example:</p>
<blockquote><p>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;style type=&#8221;text/css&#8221;&gt;<br />
.hump<br />
{<br />
position: static;<br />
width: 400px;<br />
}</p>
<p>.lala<br />
{<br />
position:relative;<br />
background-color:blue;<br />
width: 400px;<br />
}<br />
.hoho<br />
{<br />
position:absolute;<br />
background-color:red;<br />
left:0px;<br />
top:0px;<br />
width:50%;<br />
}</p>
<p>.rofl<br />
{<br />
position:absolute;<br />
background-color:blue;<br />
left:0px;<br />
top:20px;<br />
}</p>
<p>&lt;/style&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body&gt;<br />
&lt;div class=hump&gt;<br />
&lt;div class=&#8221;lala&#8221;&gt;ewrio<br />
&lt;div class=hoho&gt;lala&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div class=&#8221;lala&#8221;&gt;<br />
&lt;div class=hoho&gt;lala&lt;/div&gt;<br />
&lt;div class=rofl&gt;hejhopp&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>&lt;/div&gt;</p>
<p>&lt;/body&gt;</p>
<p>&lt;/html&gt;</p></blockquote>
<p>You have two options.</p>
<p>1. Add height attribute to lala (making it static height).<br />
2. Write a javascript to dynamically change height of the area depending on how large content is. I&#8217;m currently working on this as I really want this solution.</p>
<p>There is probably a much better solution to this, so if you know of a better way, please let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.frozentux.net/2008/08/tired-of-javascriptcss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

