<?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>CammaBlog &#187; CSS</title>
	<atom:link href="http://www.camma.ch/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.camma.ch</link>
	<description>die Informationsschnippsel-Sammlung eines Streifzugs durch die Weiten des Webs</description>
	<lastBuildDate>Fri, 27 May 2011 04:36:16 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CSS: Layouts mit 100% H&#246;he</title>
		<link>http://www.camma.ch/2010/01/12/css-layouts-mit-100-hoehe/</link>
		<comments>http://www.camma.ch/2010/01/12/css-layouts-mit-100-hoehe/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 05:27:10 +0000</pubDate>
		<dc:creator>Lukas Blatter</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.camma.ch/?p=1488</guid>
		<description><![CDATA[Wenn das Layout einer Seite 100% hoch sein muss, gibt es einiges was beachtet werden muss. Als Vorlage kann dieses Example genommen werden. Vorbereitung des Stylesheets: html,body &#123; &#160; &#160; margin:0; &#160; &#160; padding:0; &#160; &#160; height:100%; /* braucht es f&#252;r die min-height des Containers */ &#125; Danach muss f&#252;r die gesamte H&#246;he ein Container [...]]]></description>
			<content:encoded><![CDATA[<p>Wenn das Layout einer Seite 100% hoch sein muss, gibt es einiges was beachtet werden muss. Als Vorlage kann <a href="http://www.xs4all.nl/~peterned/examples/csslayout1.html" target="_blank">dieses Example</a> genommen werden.</p>
<p>Vorbereitung des Stylesheets:</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">html<span style="color: #00AA00;">,</span>body <span style="color: #00AA00;">&#123;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">padding</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* braucht es für die min-height des Containers */</span><br />
<span style="color: #00AA00;">&#125;</span></div></div>
<p>Danach muss f&#252;r die gesamte H&#246;he ein Container erstellt werden:</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">div<span style="color: #cc00cc;">#container</span> <span style="color: #00AA00;">&#123;</span><br />
&nbsp; &nbsp; <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: #808080; font-style: italic;">/* braucht es für die Footer Position*/</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">margin</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span> <span style="color: #993333;">auto</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Zentriert die Seite (nicht in IE5) */</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">750px</span><span style="color: #00AA00;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #993333;">auto</span> !important<span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* normale Browser */</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* IE6: setzt dies wie min-height um*/</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* normale Browser */</span><br />
<span style="color: #00AA00;">&#125;</span></div></div>
<p>Der Head und der Content k&#246;nnen nun normal platziert werden. Damit nun der Footer der Seite immer am unteren Rand klebt, muss folgendes im Stylesheet definiert werden:</p>
<div class="codecolorer-container css mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><div class="css codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">div<span style="color: #cc00cc;">#footer</span> <span style="color: #00AA00;">&#123;</span><br />
&nbsp; &nbsp; <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><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span><span style="color: #933;">100%</span><span style="color: #00AA00;">;</span><br />
&nbsp; &nbsp; <span style="color: #000000; font-weight: bold;">bottom</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span> <span style="color: #808080; font-style: italic;">/* Positioniert dies ganz unten */</span><br />
<span style="color: #00AA00;">&#125;</span></div></div>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.camma.ch/2009/01/18/tutorial-css-boxen/' title='Tutorial CSS Boxen'>Tutorial CSS Boxen</a></li>
<li><a href='http://www.camma.ch/2010/10/18/jquery-iframe-resizing/' title='jQuery iFrame resizing'>jQuery iFrame resizing</a></li>
<li><a href='http://www.camma.ch/2010/06/11/html-newsletter-erstellen/' title='HTML Newsletter erstellen'>HTML Newsletter erstellen</a></li>
<li><a href='http://www.camma.ch/2010/03/11/iphone-weitere-tipps-zur-webseiten-programmierung/' title='iPhone: Weitere Tipps zur Webseiten programmierung'>iPhone: Weitere Tipps zur Webseiten programmierung</a></li>
<li><a href='http://www.camma.ch/2010/03/10/mega-drop-down-navigation-mit-und-ohne-javascript/' title='Mega Drop Down Navigation, mit und ohne JavaScript'>Mega Drop Down Navigation, mit und ohne JavaScript</a></li>
</ul>
<img src="http://www.camma.ch/?ak_action=api_record_view&id=1488&type=feed" alt="" /><span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22CSS%3A%20Layouts%20mit%20100%25%20H%C3%B6he%22%20http%3A%2F%2Ftinyurl.com%2Fykszspe" title="Twitter It!" rel="nofollow">Twitter It!</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.camma.ch/2010/01/12/css-layouts-mit-100-hoehe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tutorial CSS Boxen</title>
		<link>http://www.camma.ch/2009/01/18/tutorial-css-boxen/</link>
		<comments>http://www.camma.ch/2009/01/18/tutorial-css-boxen/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 12:57:23 +0000</pubDate>
		<dc:creator>Lukas Blatter</dc:creator>
				<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.camma.ch/?p=194</guid>
		<description><![CDATA[CSS Boxen sind immer wieder mal ein Buch mit sieben Siegeln, vorallem wenn man diese nicht h&#228;ufig programmiert. Auf der Seite von the noodle incident sind die CSS Boxen mit Beispielen dargestellt. Der entsprechende Code wird mit einem Klick angezeigt. Zum Tutorial von the noodle incident Related Posts: CSS: Layouts mit 100% H&#246;he jQuery iFrame [...]]]></description>
			<content:encoded><![CDATA[<p>CSS Boxen sind immer wieder mal ein Buch mit sieben Siegeln, vorallem wenn man diese nicht h&#228;ufig programmiert. Auf der Seite von the noodle incident sind die CSS Boxen mit Beispielen dargestellt. Der entsprechende Code wird mit einem Klick angezeigt.</p>
<div id="attachment_195" class="wp-caption aligncenter" style="width: 244px"><a href="http://www.camma.ch/wp-content/uploads/2009/01/littleboxes.png"><img src="http://www.camma.ch/wp-content/uploads/2009/01/littleboxes-234x300.png" alt="Little Boxes Tutorial" title="littleboxes" width="234" height="300" class="size-medium wp-image-195" /></a><p class="wp-caption-text">Little Boxes Tutorial</p></div>
<p>Zum <a href="http://www.thenoodleincident.com/tutorials/box_lesson/boxes.html" target="_blank">Tutorial von the noodle incident</a></p>
<h3 class='related_post_title'>Related Posts:</h3>
<ul class='related_post'>
<li><a href='http://www.camma.ch/2010/01/12/css-layouts-mit-100-hoehe/' title='CSS: Layouts mit 100% H&#246;he'>CSS: Layouts mit 100% H&#246;he</a></li>
<li><a href='http://www.camma.ch/2010/10/18/jquery-iframe-resizing/' title='jQuery iFrame resizing'>jQuery iFrame resizing</a></li>
<li><a href='http://www.camma.ch/2010/06/11/html-newsletter-erstellen/' title='HTML Newsletter erstellen'>HTML Newsletter erstellen</a></li>
<li><a href='http://www.camma.ch/2010/03/11/iphone-weitere-tipps-zur-webseiten-programmierung/' title='iPhone: Weitere Tipps zur Webseiten programmierung'>iPhone: Weitere Tipps zur Webseiten programmierung</a></li>
<li><a href='http://www.camma.ch/2010/03/10/mega-drop-down-navigation-mit-und-ohne-javascript/' title='Mega Drop Down Navigation, mit und ohne JavaScript'>Mega Drop Down Navigation, mit und ohne JavaScript</a></li>
</ul>
<img src="http://www.camma.ch/?ak_action=api_record_view&id=194&type=feed" alt="" /><span class="post-twitter" ><a href="http://twitter.com/home?status=Reading%20%20%22Tutorial%20CSS%20Boxen%22%20http%3A%2F%2Ftinyurl.com%2Fqe8682" title="Twitter It!" rel="nofollow">Twitter It!</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.camma.ch/2009/01/18/tutorial-css-boxen/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

