<?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>elblogg &#187; css</title>
	<atom:link href="http://blog.elzapp.com/tag/css/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.elzapp.com</link>
	<description>blogge v1 (norr bloðga, av *blod) skjære, stikke fisk slik at blodet renner ut, jf *bløgge</description>
	<lastBuildDate>Fri, 09 Jul 2010 13:38:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>position:relative</title>
		<link>http://blog.elzapp.com/2009/09/09/positionrelative.html</link>
		<comments>http://blog.elzapp.com/2009/09/09/positionrelative.html#comments</comments>
		<pubDate>Wed, 09 Sep 2009 12:54:47 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[positioning]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/?p=1418</guid>
		<description><![CDATA[I started this morning learning something I should have known for ages. I have been coding HTML for well over a decade, and CSS for nearly a decade. I have even taught HTML and CSS both at the University of Bergen and for student groups at Bergen University College. Of course, that&#8217;s no guarantee of [...]]]></description>
			<content:encoded><![CDATA[<p>I started this morning learning something I should have known for ages. I have been coding HTML for well over a decade, and CSS for nearly a decade. I have even taught HTML and CSS both at the University of Bergen and for student groups at Bergen University College.</p>
<p>Of course, that&#8217;s no guarantee of how much I actually know about the subject, but I think I have a pretty good knowledge of HTML and CSS. Even then, how <em>position:relative</em> actually works has managed to slip completely under my radar. I find this rather embarrassing, but I write about it here, because if I haven&#8217;t managed to get this before now, there is probably several other webdevelopers that also don&#8217;t know this (I hope).</p>
<p>The functionality of <em>position:relative</em> is not complicated, it&#8217;s actually very simple, you just have to know this.</p>
<p><span id="more-1418"></span></p>
<h3>Positioning in general</h3>
<p>Ok, let&#8217;s start with how the positioning in CSS works. If you only want to know about position:relative. You should <a href="#position_absolute">jump to the position:absolute section</a> and read on from there</p>
<p>You have two sorts of elements in CSS (actually there&#8217;s more, but there&#8217;s two significant sorts of elements): block level elements and inline elements. Inline elements flow with the text, and is always positioned using the flow around them.</p>
<div style="border: medium none #cccccc; margin: auto; background: #eeeeee none repeat scroll 0% 0%; width: 300px;">Examples are <strong style="border:1px dotted black">&lt;strong&gt;</strong>, <strong style="border:1px dotted black">&lt;em&gt;</strong>, <strong style="border:1px dotted black">&lt;span&gt;</strong>, etc&#8230; You don&#8217;t position these using CSS.</div>
<p>Block elements may also flow with the text, but they always breaks up the flow, and is placed on a seperate line.</p>
<div style="border: medium none #cccccc; margin: auto; background: #eeeeee none repeat scroll 0% 0%; width: 300px;">Examples are <strong style="border:1px dotted black;display:block">&lt;div&gt;</strong>,<strong style="border:1px dotted black;display:block">&lt;p&gt;</strong>, etc&#8230;</div>
<p>Okay, I wrote that they always occupies a seperate line. That&#8217;s as long as you don&#8217;t tell it to do otherwise. This can be done using the CSS keywords <em>float</em>, <em>position</em>, <em>top</em>, <em>left</em>, <em>right</em>, and <em>bottom</em>.. The simplest of these, and the most widely used are <em>float</em>.</p>
<h4>float</h4>
<p>You can float elements to the left or to the right. Flowing a block level element to the right will place it as far right as the parent element allows, and if the element is narrower than the parent element the text (or other elements) will flow around it.</p>
<p>example:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1418code4'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p14184"><td class="code" id="p1418code4"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.floating</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">float</span><span style="color: #00AA00;">:</span><span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<div style="  width: 100px;    height:100px;    float:right;    background:#CCC;    margin:0 10px;">float:right</div>
<p>will make a div-element of the class &#8220;floating&#8221; look like the grey box on the right. Notice that this text will wrap around it. The floated element is anchored to the location in the text where it is coded. The grey box will always be located to the right of this paragraph even if I add thousands of lines of text above it.</p>
<h4 id="position_absolute">position:absolute</h4>
<p>Position:absolute takes the element out of the regular text flow, and places the element on the page according to coordinates. The coordinates are given by the top, left, right and bottom CSS attributes.</p>
<p>Here is an example:</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1418code5'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p14185"><td class="code" id="p1418code5"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.absolutepositioned</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

<p>Imagine that the box below is a page.</p>
<div style="border: 1px solid #cccccc; margin: auto; width: 400px; position: relative; height: 500px; font-size: 10px;">
<div style="margin: 0pt 10px; background: #cccccc none repeat scroll 0% 0%; position: absolute; top: 100px; right: 100px; width: 100px; height: 100px;">absolute</div>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce hendrerit lobortis magna pulvinar placerat. Maecenas vel nisi at quam posuere sagittis id vel purus. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus eu eros tellus, et malesuada nunc. Etiam iaculis blandit laoreet. Vivamus eu metus odio, quis egestas ante. Cras non turpis quis sapien vestibulum aliquam. Nullam tellus massa, fringilla ut dictum eu, malesuada sit amet diam. Nulla facilisi. Nam congue facilisis risus ac luctus. Etiam ullamcorper pulvinar risus, vitae bibendum metus condimentum id. Proin porttitor neque quis neque ultricies nec varius leo tincidunt. Mauris cursus turpis eu velit tempor dapibus. Cras turpis tortor, tincidunt a varius eget, bibendum commodo lorem. Proin vestibulum, enim nec mattis viverra, odio lectus ultrices ante, at euismod lacus sapien a odio. Aliquam at semper sapien. Vestibulum eu sapien eros, tristique vulputate nisl. Etiam blandit viverra tellus, et consectetur risus suscipit quis.</p>
<p>Pellentesque commodo urna eu mauris tristique sollicitudin. Sed bibendum mauris at felis facilisis vestibulum sit amet sit amet dui. Curabitur dui dolor, tempus eu fringilla at, sagittis in neque. Praesent at tristique nulla. Donec ut ligula et nunc mollis elementum vitae non orci. Nulla volutpat tortor ut diam fermentum hendrerit. Donec sit amet elit ac neque viverra ultrices. Nulla facilisi. Nulla porta pellentesque turpis id mattis. Proin sollicitudin convallis malesuada. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum et molestie eros. Nulla convallis porta augue a porttitor. Pellentesque pharetra facilisis pretium. Phasellus vel luctus lacus.</p>
<p>Donec sagittis diam et orci venenatis mollis. Donec nibh nisl, euismod a vulputate eu, cursus sit amet mi. Suspendisse et vehicula nisi. Nullam accumsan ultricies ligula vel lacinia. Sed lacinia elit eu quam mattis ullamcorper. Maecenas dignissim turpis eros, id facilisis nulla. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed rutrum gravida metus id tempor. Fusce erat tellus, luctus at ultricies nec, imperdiet vel turpis. Integer non tellus justo, id bibendum augue. Nam quam sapien, luctus in molestie et, posuere in justo. Phasellus tincidunt cursus turpis eget viverra. Ut pulvinar, enim ac mattis luctus, odio leo ullamcorper arcu, vitae tincidunt turpis eros a enim. In sit amet turpis in massa lacinia laoreet. Aenean varius tincidunt tortor, sed ullamcorper dui sodales a. Morbi lacus lorem, dictum dignissim placerat eu, scelerisque at orci. Vestibulum ac tortor ac felis posuere aliquam. Proin eget quam sit amet est elementum ornare vel ut mi. Aenean vel dolor facilisis nunc tincidunt condimentum ut non elit.</p></div>
<p>Notice how the grey box is placed 100px from the top side of the &#8220;page&#8221; and 100px from the right side of the &#8220;page&#8221;. Also notice that the text doesn&#8217;t flow around the box, but is placed behind the box. This is an easy way to place elements around the screen, but it has low fault tolerance, since elements may end up being placed on top of eachother.</p>
<p>The <em>top</em> attribute controls the offset between the outer top side of the element, to the inner top side of the &#8220;page&#8221;.<br />
The <em>left</em> attribute controls the offset between the outer left side of the element to the inner left side of the &#8220;page&#8221;.<br />
The <em>right</em> attribute controls the offset between the outer right side of the element to the inner right side of the page.<br />
The <em>bottom</em> attribute controls the offset between the outer lower side of the element to the inner lower side of the page.</p>
<h4 id="position_absolute">position:fixed</h4>
<p>Position:fixed works pretty much like the position:absolute, with the difference that the coordinates is relative to the sides of the viewing window in your browser. Elements that are positioned with fixed positioning will stick to the screen, and stay visible on the same place on the screen when you scroll down on the page. Internet Explorer 6 has no support for this, and this feature is therefore not used as much as you could think. I won&#8217;t provide an example for this, because it won&#8217;t fit on the page.</p>
<h4>position:relative</h4>
<p>Now to the thing I had wrong. position:absolute and position:fixed both modifies what the top, left, right and bottom attributes control. I thought this was the case for position:relative as well, and that the &#8220;relative&#8221; part meant that it would be relative to the location it&#8217;s coded (more like the float attribute). It is probably written a lot of places, but I thought I understood this so I never bothered to look. Of course I found it odd that not even Firefox or Opera worked the way I expected, but I didn&#8217;t think more about that. I have just avoided using this feature.</p>
<p>Therefore it was a great revelation this morning when I finally got how to use this. I was reading through some old <em>&#8220;read-later&#8221;</em> bookmarks, and came over this article in Smashing Magazine: <a href="http://www.smashingmagazine.com/2009/05/25/ask-sm-css-quick-question-edition/">Ask SM: CSS Quick-Question Edition</a>. There @_Zapp (funny how similar this is to my nick, but it&#8217;s not me, promise.) had asked <em>&#8220;How do you position stuff at the bottom of a div with (or without) position absolute and relative, so that it will look the same on all browsers.&#8221;. </em>This caught my attention, because I had just had the same problem (since I had the position:relative stuff wrong).</p>
<p>Smashing Magazines answer was to use position relative on the box you want to place elements inside, and then use position:absolute inside.</p>
<p>In fact, I had to do this to show the position:absolute example above. The &#8220;page&#8221; here has<em> style=&#8221;postition:relative&#8221;</em>, and then the absolute positioned element inside is relative to the &#8220;page&#8221;. Without position relative, the grey box would have been placed somewhere around the header of this page.</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p1418code6'); return false;">View Code</a> CSS</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p14186"><td class="code" id="p1418code6"><pre class="css" style="font-family:monospace;">div<span style="color: #6666ff;">.virtualpage</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#cccccc</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">400px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">relative</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">500px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">font-size</span><span style="color: #00AA00;">:</span> <span style="color: #933;">10px</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
div<span style="color: #6666ff;">.absolutepositioned</span> <span style="color: #00AA00;">&#123;</span>
    <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span><span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">right</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100px</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span><span style="color: #cc00cc;">#CCC</span><span style="color: #00AA00;">;</span>
    <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #933;">10px</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2009/09/09/positionrelative.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Merkelapper</title>
		<link>http://blog.elzapp.com/2009/02/06/merkelapper.html</link>
		<comments>http://blog.elzapp.com/2009/02/06/merkelapper.html#comments</comments>
		<pubDate>Fri, 06 Feb 2009 05:30:10 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[webdesign]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/?p=937</guid>
		<description><![CDATA[De observante der ute (og som ikke bare leser bloggen min fra rss-leseren sin) kan ha oppdaget at merkelappene på bloggpostene har fått et nytt utseende. Det begynte egentlig med at jeg så på en post jeg hadde skrevet og tenkte &#8220;Hm, de taggene der ser ikke ut som om de egentlig hører hjemme der&#8221;. [...]]]></description>
			<content:encoded><![CDATA[<p>De observante der ute (og som ikke bare leser bloggen min fra rss-leseren sin) kan ha oppdaget at merkelappene på bloggpostene har fått et nytt utseende.</p>
<p>Det begynte egentlig med at jeg så på en post jeg hadde skrevet og tenkte &#8220;Hm, de taggene der ser ikke ut som om de egentlig hører hjemme der&#8221;. Videre tenkte jeg, hva skal jeg gjøre for å få dem mer inn i det visuelle uttrykket på bloggen. Det hadde vært fint med noen bilder, men da må jeg vedlikeholde en haug med bilder for alle taggene. Det har jeg forsøkt før, da bare for kategoriene, og det er nesten ti ganger så mange tagger som kategoriene.</p>
<p>Hva om jeg kunne lage en bakgrunn som fikk merkelappene til å se mer ut som merkelapper? Vel.. min assosiasjon til merkelapper i denne sammenhengen er slike brune lapper som brukes på postsekker. Jeg kunne alltids lage en bakgrunn som så slik ut, men jeg syntes det ville være rart om de bare gikk rett horisontalt.<img class="alignright" title="merkelapp" src="http://elzapp.com/~base/img.php?tag=++++++" alt="" width="48" height="48" /></p>
<p>Her kommer vi til en av de tingene som jeg har savnet i CSS. En mulighet til å rotere objekter.</p>
<p>Velvel. vi kan jo alltids generere bilder på serveren, og bruke det&#8230; Og det var akkurat det jeg endte opp med også. Ikke bare får jeg da generert merkelappene slik jeg vil ha dem, men jeg kan velge den fonten jeg vil ha også, selv om webfonts ikke er støttet i nettleserene enda.</p>
<p>Resultatet er merkelappene nedenfor, og php-koden som genererer dem finner du <a href="http://elzapp.com/~base/img.phps">her</a><br />
Og <a href="http://elzapp.com/~base/tagsnippet.phps">her</a> er det jeg brukte for å putte det inn i wordpress-temaet</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2009/02/06/merkelapper.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CSS foredrag</title>
		<link>http://blog.elzapp.com/2009/02/04/css-foredrag.html</link>
		<comments>http://blog.elzapp.com/2009/02/04/css-foredrag.html#comments</comments>
		<pubDate>Wed, 04 Feb 2009 07:18:23 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[foilsett]]></category>
		<category><![CDATA[foredrag]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[slides]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/?p=917</guid>
		<description><![CDATA[Foilsett med notater til CSS-foredraget avholdt for Bergen Teknikersamfund 2. Februar 2009 er tilgjengelig her. Jeg glemte å nevne hvordan en faktisk kobler sammen stilarket og html-dokumentet. En kan enten putte stilarket i head-delen av HTML-dokumentet, inni en &#60;style&#62; blokk. For eksempel: &#60;style type="text/css"&#62; a { text-decoration:none; color:#FF0000; } &#60;/style&#62; Eller, dere kan (helst) ha [...]]]></description>
			<content:encoded><![CDATA[<p>Foilsett med notater til CSS-foredraget avholdt for Bergen Teknikersamfund 2. Februar 2009 er tilgjengelig <a href="http://blog.elzapp.com/wp-content/uploads/html-talk/css-talk.html">her</a>.</p>
<p>Jeg glemte å nevne hvordan en faktisk kobler sammen stilarket og html-dokumentet. En kan enten putte stilarket i head-delen av HTML-dokumentet, inni en &lt;style&gt; blokk.</p>
<p>For eksempel:</p>
<pre>&lt;style type="text/css"&gt;
a {
text-decoration:none;
color:#FF0000;
}
&lt;/style&gt;</pre>
<p>Eller, dere kan (helst) ha stilarket i en fil, da refererer dere til stilarket med en tag som denne:</p>
<pre>&lt;link rel="stylesheet" type="text/css" href="adresse til stilarket"&gt;</pre>
<p>Sett inn adressen til stilarket der det står adresse til stilarket.</p>
<p>Til dere som lurte på hvilken editor jeg brukte på mandag: Editoren jeg brukte heter <a href="http://www.openkomodo.com/">Komodo Edit eller Open Komodo</a>, og er tilgjengelig for <a href="http://downloads.activestate.com/Komodo/releases/5.0.3/Komodo-IDE-5.0.3-25622-macosx-x86.dmg">Mac</a>, <a href="http://downloads.activestate.com/Komodo/releases/5.0.3/Komodo-IDE-5.0.3-25622-linux-libcpp6-x86.tar.gz">Linux</a> og <a href="http://downloads.activestate.com/Komodo/releases/5.0.3/Komodo-Edit-5.0.3-2767.msi">Windows</a></p>
<p>Lykke til.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2009/02/04/css-foredrag.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML foredrag</title>
		<link>http://blog.elzapp.com/2009/01/20/html-foredrag.html</link>
		<comments>http://blog.elzapp.com/2009/01/20/html-foredrag.html#comments</comments>
		<pubDate>Tue, 20 Jan 2009 06:51:13 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[misc]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[foredrag]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[norsk]]></category>
		<category><![CDATA[sgml]]></category>
		<category><![CDATA[xhtml]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/?p=856</guid>
		<description><![CDATA[Foilsett med notater til HTML-foredraget avholdt for Bergen Teknikersamfund 19. januar 2009 er tilgjengelig her.]]></description>
			<content:encoded><![CDATA[<p>Foilsett med notater til HTML-foredraget avholdt for Bergen Teknikersamfund 19. januar 2009 er tilgjengelig <a href="http://blog.elzapp.com/wp-content/uploads/html-talk/html-talk.html">her</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2009/01/20/html-foredrag.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Understanding CSS positioning</title>
		<link>http://blog.elzapp.com/2008/05/26/understanding-css-positioning.html</link>
		<comments>http://blog.elzapp.com/2008/05/26/understanding-css-positioning.html#comments</comments>
		<pubDate>Mon, 26 May 2008 07:29:34 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[english]]></category>
		<category><![CDATA[misc]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/?p=342</guid>
		<description><![CDATA[I just discovered this fine article series on CSS positioning via del.icio.us. It should be a good read for everyone interested in the subject, from total CSS newbies to people that has a great understanding of CSS already. Part 1 &#8211; Covers &#8220;display&#8221; and &#8220;position&#8221; Part 2 &#8211; Covers more &#8220;display&#8221;, &#8220;overflow&#8221; and &#8220;float/clear&#8221; Part [...]]]></description>
			<content:encoded><![CDATA[<p>I just discovered this fine article series on CSS positioning via <a href="http://del.icio.us/tag/css">del.icio.us</a>. It should be a good read for everyone  interested in the subject, from total CSS newbies to people that has a great understanding of CSS already.</p>
<ul>
<li><a href="http://kilianvalkhof.com/2008/css-xhtml/understanding-css-positioning-part-1">Part 1</a> &#8211;  Covers &#8220;display&#8221; and &#8220;position&#8221;</li>
<li><a href="http://kilianvalkhof.com/2008/css-xhtml/understanding-css-positioning-part-2/">Part 2</a> &#8211; Covers more &#8220;display&#8221;, &#8220;overflow&#8221; and &#8220;float/clear&#8221;</li>
<li><a href="http://kilianvalkhof.com/2008/css-xhtml/understanding-css-positioning-part-3">Part 3</a> &#8211; some CSS3 stuff&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2008/05/26/understanding-css-positioning.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>More hot widgets</title>
		<link>http://blog.elzapp.com/2004/09/17/more-hot-widgets.html</link>
		<comments>http://blog.elzapp.com/2004/09/17/more-hot-widgets.html#comments</comments>
		<pubDate>Fri, 17 Sep 2004 15:03:58 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[imported]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/2004/09/17/more-hot-widgets.html</guid>
		<description><![CDATA[Kevin Gerich have released another set of nice widgets for Mozilla. It is a continued version of the last set, wich now also has radio-buttons and checkboxes in mac-style. If you have a mac, grab them at his blog I have made a modified version of the previous set of widgets for Linux, and I [...]]]></description>
			<content:encoded><![CDATA[<p>Kevin Gerich have released another set of nice widgets for Mozilla. It is a continued version of the last set, wich now also has radio-buttons and checkboxes in mac-style.</p>
<p>If you have a mac, grab <a href="http://kmgerich.com/archive/000072.html">them</a> at his <a href="http://kmgerich.com/">blog</a></p>
<p>I have made a modified version of the previous set of widgets for Linux, and I will try to make a linux-set of these too, and publish them here (if I&#8217;m allowed to to so)</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2004/09/17/more-hot-widgets.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot widgets</title>
		<link>http://blog.elzapp.com/2004/09/14/hot-widgets.html</link>
		<comments>http://blog.elzapp.com/2004/09/14/hot-widgets.html#comments</comments>
		<pubDate>Tue, 14 Sep 2004 17:30:57 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[imported]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/2004/09/14/hot-widgets.html</guid>
		<description><![CDATA[Kevin Gerich have posted a custom stylesheet for content in Mozilla firefox (known as chrome/userContent.css. It looks really neat, its made for MacOSX (those spoiled mac-users) but works on Linux too. I have not tested it on Windows. There is one thing wrong with it when you uses it on Linux, the focus rings is [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://kmgerich.com/">Kevin Gerich</a> have posted a custom stylesheet for content in Mozilla firefox (known as chrome/userContent.css. It looks really neat, its made for MacOSX (those spoiled mac-users) but works on Linux too. I have not tested it on Windows.</p>
<p>There is one thing wrong with it when you uses it on Linux, the focus rings is in black and are annoyingly bold. I will maybe create a modified version of it where this is fixed.</p>
<p>meanwhile, <a href="http://kmgerich.com/archive/000069.html">get the stylesheet at Kevins blog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2004/09/14/hot-widgets.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla CSS bug</title>
		<link>http://blog.elzapp.com/2004/08/01/mozilla-css-bug.html</link>
		<comments>http://blog.elzapp.com/2004/08/01/mozilla-css-bug.html#comments</comments>
		<pubDate>Sat, 31 Jul 2004 23:06:44 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[imported]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[english]]></category>
		<category><![CDATA[webdesign]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/2004/08/01/mozilla-css-bug.html</guid>
		<description><![CDATA[I have been struggling against one big problem the last few weeks: how do I get things vertically aligned to middle?. It turns out that the css-property vertical-align works in all browsers except Mozilla Firefox. Even IE does this right, but mozilla doesnt seem to understand it at all&#8230;]]></description>
			<content:encoded><![CDATA[<p> I have been struggling against one big problem the last few weeks: how do I get things vertically aligned to middle?. It turns out that the css-property <code>vertical-align</code> works in all browsers except Mozilla Firefox. Even IE does this right, but mozilla doesnt seem to understand it at all&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2004/08/01/mozilla-css-bug.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>For nerdene blandt oss</title>
		<link>http://blog.elzapp.com/2004/04/25/for-nerdene-blandt-oss.html</link>
		<comments>http://blog.elzapp.com/2004/04/25/for-nerdene-blandt-oss.html#comments</comments>
		<pubDate>Sun, 25 Apr 2004 17:35:37 +0000</pubDate>
		<dc:creator>elzapp</dc:creator>
				<category><![CDATA[imported]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[webstandards]]></category>

		<guid isPermaLink="false">http://blog.elzapp.com/2004/04/25/for-nerdene-blandt-oss.html</guid>
		<description><![CDATA[For de som har lyst til å lese W3C sine spesifikasjoner av HTML, CSS og XHTML finner dere dem her: HTML 4.01 CSS2 XHTML 1.1 XHTML 1.0 CSS3]]></description>
			<content:encoded><![CDATA[<p>For de som har lyst til å lese <abbr title="World Wide Web Consortium">W3C</abbr> sine spesifikasjoner av HTML, CSS og XHTML finner dere dem her:</p>
<ul>
<li><a href="http://www.w3.org/TR/html401/">HTML 4.01</a></li>
<li><a href="http://www.w3.org/TR/REC-CSS2/">CSS2</a></li>
<li><a href="http://www.w3.org/TR/2001/REC-xhtml11-20010531/xhtml11.html">XHTML 1.1</a></li>
<li><a href="http://www.w3.org/TR/xhtml1/">XHTML 1.0</a></li>
<li><a href="http://www.w3.org/TR/css3-page/">CSS3</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.elzapp.com/2004/04/25/for-nerdene-blandt-oss.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
