<?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>Css Snippets &#187; box</title>
	<atom:link href="http://www.csssnippets.be/tag/box/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.csssnippets.be</link>
	<description>Snippets for you, snippets for me</description>
	<lastBuildDate>Mon, 17 Oct 2011 08:42:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Table design #2: Box model</title>
		<link>http://www.csssnippets.be/2009/09/table-design-2-box-model/</link>
		<comments>http://www.csssnippets.be/2009/09/table-design-2-box-model/#comments</comments>
		<pubDate>Wed, 30 Sep 2009 11:50:44 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[box]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[table]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Xhtml Strict]]></category>
		<category><![CDATA[mimimaal]]></category>
		<category><![CDATA[style]]></category>
		<category><![CDATA[tabel]]></category>

		<guid isPermaLink="false">http://www.csssnippets.be/?p=373</guid>
		<description><![CDATA[Tabellen zijn gedacht voor het weergeven van data (dat is een globaal begrip) niet om layout van een website te maken. Dit is deel 2 van verschillende mogelijkheden van tabellen van style te voorzien.]]></description>
			<content:encoded><![CDATA[<p>Tabellen zijn gedacht voor het weergeven van data (dat is een globaal begrip) niet om layout van een website te maken. Dit is deel 2 van verschillende mogelijkheden van tabellen van style te voorzien.</p>
<h3>HTML</h3>
<pre title="code" class="xhtml">
&lt;table summary="Employee Pay Sheet" id="box-table-a"&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th scope="col"&gt;Employee&lt;/th&gt;
&lt;th scope="col"&gt;Salary&lt;/th&gt;
&lt;th scope="col"&gt;Bonus&lt;/th&gt;
&lt;th scope="col"&gt;Supervisor&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Stephen C. Cox&lt;/td&gt;
&lt;td&gt;$300&lt;/td&gt;
&lt;td&gt;$50&lt;/td&gt;
&lt;td&gt;Bob&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Josephin Tan&lt;/td&gt;
&lt;td&gt;$150&lt;/td&gt;
&lt;td&gt;-&lt;/td&gt;
&lt;td&gt;Annie&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Joyce Ming&lt;/td&gt;
&lt;td&gt;$200&lt;/td&gt;
&lt;td&gt;$35&lt;/td&gt;
&lt;td&gt;Andy&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;James A. Pentel&lt;/td&gt;
&lt;td&gt;$175&lt;/td&gt;
&lt;td&gt;$25&lt;/td&gt;
&lt;td&gt;Annie&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
</pre>
<h3>CSS</h3>
<pre title="code" class="css">
#box-table-a {
border-collapse:collapse;
font-family:"Lucida Sans Unicode","Lucida Grande",Sans-Serif;
font-size:12px;
margin:20px;
text-align:left;
width:480px;
}
#box-table-a th {
background:#B9C9FE none repeat scroll 0 0;
border-bottom:1px solid #FFF;
border-top:4px solid #AABCFE;
color:#039;
font-size:13px;
font-weight:normal;
padding:8px;
}
#box-table-a td {
background:#E8EDFF none repeat scroll 0 0;
border-bottom:1px solid #FFF;
border-top:1px solid transparent;
color:#669;
padding:8px;
}
#box-table-a tr:hover td {
background:#D0DAFD none repeat scroll 0 0;
color:#339;
}
</pre>



	<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;title=Table%20design%20%232%3A%20Box%20model&amp;annotation=Tabellen%20zijn%20gedacht%20voor%20het%20weergeven%20van%20data%20%28dat%20is%20een%20globaal%20begrip%29%20niet%20om%20layout%20van%20een%20website%20te%20maken.%20Dit%20is%20deel%202%20van%20verschillende%20mogelijkheden%20van%20tabellen%20van%20style%20te%20voorzien." class="google bookmarks" title="Google Bookmarks">Google Bookmarks</a>
	<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;title=Table%20design%20%232%3A%20Box%20model&amp;bodytext=Tabellen%20zijn%20gedacht%20voor%20het%20weergeven%20van%20data%20%28dat%20is%20een%20globaal%20begrip%29%20niet%20om%20layout%20van%20een%20website%20te%20maken.%20Dit%20is%20deel%202%20van%20verschillende%20mogelijkheden%20van%20tabellen%20van%20style%20te%20voorzien." class="digg" title="Digg">Digg</a>
	<a rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;Title=Table%20design%20%232%3A%20Box%20model" class="blinklist" title="BlinkList">BlinkList</a>
	<a rel="nofollow" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F" class="technorati" title="Technorati">Technorati</a>
	<a rel="nofollow" href="http://twitter.com/home?status=Table%20design%20%232%3A%20Box%20model%20-%20http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F" class="twitter" title="Twitter">Twitter</a>
	<a rel="nofollow" href="http://delicious.com/post?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;title=Table%20design%20%232%3A%20Box%20model&amp;notes=Tabellen%20zijn%20gedacht%20voor%20het%20weergeven%20van%20data%20%28dat%20is%20een%20globaal%20begrip%29%20niet%20om%20layout%20van%20een%20website%20te%20maken.%20Dit%20is%20deel%202%20van%20verschillende%20mogelijkheden%20van%20tabellen%20van%20style%20te%20voorzien." class="delicious" title="del.icio.us">del.icio.us</a>
	<a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;t=Table%20design%20%232%3A%20Box%20model" class="facebook" title="Facebook">Facebook</a>
	<a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F09%2Ftable-design-2-box-model%2F&amp;title=Table%20design%20%232%3A%20Box%20model" class="stumbleupon" title="StumbleUpon">StumbleUpon</a>

<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.csssnippets.be/2009/09/table-design-2-box-model/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 en 4 kolommen layout</title>
		<link>http://www.csssnippets.be/2009/07/3-en-4-kolommen-layout/</link>
		<comments>http://www.csssnippets.be/2009/07/3-en-4-kolommen-layout/#comments</comments>
		<pubDate>Sat, 11 Jul 2009 10:52:33 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[box]]></category>
		<category><![CDATA[centreren]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[valid]]></category>
		<category><![CDATA[W3C]]></category>
		<category><![CDATA[Xhtml Strict]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://www.csssnippets.be/?p=299</guid>
		<description><![CDATA[Template voor een mengeling van 3 en 4 kolommen layout.

<img src="http://www.csssnippets.be/wp-content/2009/07/thumb-css-fx-3-4c.jpg" alt="thumb-css-fx-3-4c" title="thumb-css-fx-3-4c" width="150" height="100" class="alignnone size-full wp-image-300" />]]></description>
			<content:encoded><![CDATA[<p>Template voor een mengeling van 3 en 4 kolommen layout.</p>
<p><img src="http://www.csssnippets.be/wp-content/2009/07/thumb-css-fx-3-4c.jpg" alt="thumb-css-fx-3-4c" title="thumb-css-fx-3-4c" width="150" height="100" class="alignnone size-full wp-image-300" /></p>
<h3>HTML</h3>
<pre title="code" class="xhtml">
&lt;div id="postHeader"&gt;
&lt;a href="#" title="Links"&gt;Links &#8250;&#8250;&lt;/a&gt;&nbsp;&nbsp;&lt;a href="#" title="Site Map"&gt;Site Map &#8250;&#8250;&lt;/a&gt;&nbsp;&nbsp;&lt;a href="#" title="Contact"&gt;Contact &#8250;&#8250;&lt;/a&gt;
&lt;/div&gt;

&lt;div id="centerColumn"&gt;

	&lt;div id="navbar"&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="Home"&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="About"&gt;About&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="Gallery"&gt;Gallery&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="Contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="header"&gt;
	&lt;h1&gt;site title&lt;/h1&gt;
	&lt;h2&gt;fixed 3-column over 4-column layout&lt;/h2&gt;
	&lt;/div&gt;

&lt;h2&gt;centerColumn&lt;/h2&gt;
&lt;h3&gt;sub heading&lt;/h3&gt;
&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;

&lt;hr /&gt;

	&lt;div id="cell_1"&gt;
	&lt;h2&gt;cell_1&lt;/h2&gt;
	&lt;p class="news"&gt;Quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;ul class="news"&gt;
	&lt;li class="news"&gt;&lt;a href="#"&gt;Link&lt;/a&gt;&lt;br /&gt;
	&lt;em&gt;Date&lt;br /&gt;
	Puerorum amicas adplicat auris.&lt;/em&gt;&lt;/li&gt;

	&lt;li class="news"&gt;&lt;a href="#"&gt;Link&lt;/a&gt;&lt;br /&gt;
	&lt;em&gt;Date&lt;br /&gt;
	Puerorum amicas adplicat auris.&lt;/em&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="cell_2"&gt;
	&lt;h2&gt;cell_2&lt;/h2&gt;
	&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque.&lt;/p&gt;
	&lt;p&gt;Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;/div&gt;

	&lt;div id="cell_3"&gt;
	&lt;h2&gt;cell_3&lt;/h2&gt;
	&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque.&lt;/p&gt;
	&lt;p&gt;Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;/div&gt;

	&lt;hr /&gt;

	&lt;div id="box_1"&gt;
	&lt;h2&gt;box_1&lt;/h2&gt;
	&lt;p&gt;Quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="Link"&gt;Link&#8230;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="box_2"&gt;
	&lt;h2&gt;box_2&lt;/h2&gt;
	&lt;p&gt;Quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="Link"&gt;Link&#8230;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="box_3"&gt;
	&lt;h2&gt;box_3&lt;/h2&gt;
	&lt;p&gt;Quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="Link"&gt;Link&#8230;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="box_4"&gt;
	&lt;h2&gt;box_4&lt;/h2&gt;
	&lt;p&gt;Quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="Link"&gt;Link&#8230;&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;

	&lt;div id="footer"&gt;
	Copyright, &copy; 2005-2006 &lt;a href="#" title="Company Name"&gt;Company Name&lt;/a&gt;
	&lt;/div&gt;

&lt;/div&gt;
</pre>
<h3>CSS</h3>
<pre title="code" class="css">
body {
margin:.5em;
padding:0;
height:100%;
background-color:#fff;
color:#000;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:.9em;
}

a {
color:#c00;
text-decoration:underline;
}

a:hover {
color:#616161;
text-decoration:none;
}

blockquote {
margin:1em;
padding:.5em .5em .5em 85px;
background-color:#D7ECF8;
}

blockquote p {
margin:.2em;
color:#000;
}

hr {
margin-bottom:20px;
border:none;
width:99%;
color:#eee;
background-color:#eee;
height:1px;
clear:both;
}

td.desc {
padding:4px;
text-align:left;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:.7em;
}

#postHeader {
margin:0 auto;
padding:0 .2em .3em .2em;
width:720px;
text-align:right;
vertical-align: middle;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:.7em;
text-transform:uppercase;
}

#centerColumn {
margin:0 auto;
padding:1em;
width:720px;
text-align:left;
vertical-align: middle;
background-color:#fff;
}

#centerColumn h2 {
margin:0 0 -.5em 0;
padding:.75em 0 0 0;
font-family:Georgia, "Times New Roman", Times, serif;
font-size:1.1em;
}

#centerColumn h3 {
margin:0 0 -.5em 0;
padding:.75em 0 0 0;
font-size:.8em;
font-weight:lighter;
letter-spacing:.1em;
}

#navbar {
margin:-1em -1em 0 -1em; /* Mozzila attributes */
padding:1em 0 1em 0 !important; /* IE specific attributes */
padding:1em 0 0 0;
background-color:#ccc;
}

#navbar ul {
margin:0 0 -1em .3em !important;
margin:.3em 0 0 .3em;
padding:0 0 1em 0;
list-style:none;
background-color:#ccc;
}

#navbar li {
margin:0 0 0 -.27em;
padding:.2em 0 .2em 0 !important;
padding:1em 0 1em 0;
list-style:none;
display:inline;
background-color:#ccc;
}

#navbar li a {
margin:0 0 0 0;
padding:1em .5em 1em .5em !important;
padding:1em .5em 0 .5em;
}

#header {
margin:0 -1em 0 -1em;
padding:0 0 0 0;
height:143px;
background-color:#ccc;
border-top:1px solid #fff;
}

#header h1 {
margin:0 0 -14px 10px;
padding:10px 0 0 .9em;
font-family:Georgia, "Times New Roman", Times, serif;
font-size:1.7em;
font-weight:lighter;
letter-spacing:.15em;
color:#000;
}

#header h2 {
margin:0 0 0 0;
padding:1em 0 0 30px;
font-size:.9em;
font-weight:300;
letter-spacing:.1em;
color:#000;
}

#cell_1 {
margin:0 5px 1em 0;
padding:8px;
float:left;
width:210px;
background-color:#ccc;
}

#cell_2 {
margin:0 14px 1em 14px;
padding:8px;
float:left;
width:210px;
background-color:#ccc;
}

#cell_3 {
margin:0 0 1em 5px;
padding:8px;
float:left;
width:210px;
background-color:#ccc;
}

#cell_1 p, #cell_2 p, #cell_3 p {
font-size:.75em;
color:#000;
}

#cell_1 h2 {
margin:0 0 -4px 0 !important;
margin:0 0 -20px 0;
padding:4px 0 10px 0;
font-family:Georgia, "Times New Roman", Times, serif;
color:#000;
font-weight:bold;
}

#cell_2 h2 {
margin:0 0 -4px 0 !important;
margin:0 0 -20px 0;
padding:4px 0 10px 0;
font-family:Georgia, "Times New Roman", Times, serif;
color:#000;
font-weight:bold;
}

#cell_3 h2 {
margin:0 0 -4px 0 !important;
margin:0 0 -20px 0;
padding:4px 0 10px 0;
font-family:Georgia, "Times New Roman", Times, serif;
color:#000;
font-weight:bold;
}

.barepic {
border:none;
}

.right {
float:right;
margin:5px;
padding:2px;
}

.left {
float:left;
margin:5px;
padding:2px;
}

.center {
width:auto;
margin-left:auto;
margin-right:auto;
}

.news em {
font-size:.8em;
color:#000;
}

#cell_1 ul.news, #cell_2 ul.news, #cell_3 ul.news {
margin:0 0 0 5px;
padding:0 0 0 0;
list-style:none;
}

#cell_1 li.news, #cell_2 li.news, #cell_3 li.news {
margin:0 0 .3em 0;
padding:5px 0 6px 10px;
font-size:.75em;
}

#cell_1 ul, #cell_2 ul, #cell_3 ul {
margin:0 0 0 5px;
padding:0 0 0 0;
list-style:none;
}

#cell_1 li, #cell_2 li, #cell_3 li {
margin:0 0 .3em 0;
padding:5px 0 6px 5px;
font-size:.75em;
}

#box_1 {
margin:0 5px 2em 0;
padding:8px;
float:left;
width:150px;
background-color:#ccc;
}

#box_2 {
margin:0 7px 2em 14px;
padding:8px;
float:left;
width:150px;
background-color:#ccc;
}

#box_3 {
margin:0 14px 2em 7px;
padding:8px;
float:left;
width:150px;
background-color:#ccc;
}

#box_4 {
margin:0 0 2em 5px;
padding:8px;
float:left;
width:150px;
background-color:#cccccc;
}

#box_1 p, #box_2 p, #box_3 p, #box_4 p {
font-size:.75em;
color:#000;
}

#box_1 h2, #box_2 h2, #box_3 h2, #box_4 h2 {
font-family:Georgia, "Times New Roman", Times, serif;
color:#000;
font-size:.8em;
} 

#box_1 ul, #box_2 ul, #box_3 ul, #box_4 ul {
margin:0 0 0 5px;
padding:0 0 0 0;
list-style:none;
}

#box_1 li, #box_2 li, #box_3 li, #box_4 li {
margin:0 0 .3em 0;
padding:5px 0 0 5px;
font-size:.8em;
}

#footer {
position:relative;
clear:both;
bottom:0;
margin:5em 0 0 0;
padding:0;
height:4em;
line-height:4em;
text-align:center;
font-size:.7em;
background-color:#fff;
}
</pre>



	<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;title=3%20en%204%20kolommen%20layout&amp;annotation=Template%20voor%20een%20mengeling%20van%203%20en%204%20kolommen%20layout.%0D%0A%0D%0A" class="google bookmarks" title="Google Bookmarks">Google Bookmarks</a>
	<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;title=3%20en%204%20kolommen%20layout&amp;bodytext=Template%20voor%20een%20mengeling%20van%203%20en%204%20kolommen%20layout.%0D%0A%0D%0A" class="digg" title="Digg">Digg</a>
	<a rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;Title=3%20en%204%20kolommen%20layout" class="blinklist" title="BlinkList">BlinkList</a>
	<a rel="nofollow" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F" class="technorati" title="Technorati">Technorati</a>
	<a rel="nofollow" href="http://twitter.com/home?status=3%20en%204%20kolommen%20layout%20-%20http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F" class="twitter" title="Twitter">Twitter</a>
	<a rel="nofollow" href="http://delicious.com/post?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;title=3%20en%204%20kolommen%20layout&amp;notes=Template%20voor%20een%20mengeling%20van%203%20en%204%20kolommen%20layout.%0D%0A%0D%0A" class="delicious" title="del.icio.us">del.icio.us</a>
	<a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;t=3%20en%204%20kolommen%20layout" class="facebook" title="Facebook">Facebook</a>
	<a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F07%2F3-en-4-kolommen-layout%2F&amp;title=3%20en%204%20kolommen%20layout" class="stumbleupon" title="StumbleUpon">StumbleUpon</a>

<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.csssnippets.be/2009/07/3-en-4-kolommen-layout/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1 kolom header sidebar content</title>
		<link>http://www.csssnippets.be/2009/06/1-kolom-header-sidebar-content/</link>
		<comments>http://www.csssnippets.be/2009/06/1-kolom-header-sidebar-content/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 08:29:24 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[box]]></category>
		<category><![CDATA[centreren]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Xhtml Strict]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://www.csssnippets.be/?p=288</guid>
		<description><![CDATA[Template voor 1 kolom header en sidebar en content.

<img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-1c2.jpg" alt="thumb-css-fx-1c2" title="thumb-css-fx-1c2" width="150" height="100" class="alignnone size-full wp-image-289" />]]></description>
			<content:encoded><![CDATA[<p>Template voor 1 kolom header en sidebar en content.</p>
<p><img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-1c2.jpg" alt="thumb-css-fx-1c2" title="thumb-css-fx-1c2" width="150" height="100" class="alignnone size-full wp-image-289" /></p>
<h3>HTML</h3>
<pre title="code" class="xhtml">
&lt;div id="container"&gt;
	&lt;div id="header"&gt;
	&lt;h1&gt;site title&lt;/h1&gt;
	&lt;h2&gt;Fixed 1-column header and sidebar&lt;/h2&gt;
&lt;/div&gt;
	&lt;div id="leftColumn"&gt;
	&lt;h2&gt;leftColumn&lt;/h2&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari
    levat arte fessos corporis artus.&lt;/p&gt;
	&lt;/div&gt;
&lt;div id="centerColumn"&gt;
&lt;h2&gt;centerColumn&lt;/h2&gt;
&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auri.&lt;/p&gt;
&lt;p&gt;&lt;a class="small" href="fixed-1c2.zip" title="Download"&gt;download this template&lt;/a&gt;&lt;/p&gt;
&lt;h2&gt;Header 2&lt;/h2&gt;
&lt;p&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;List Item&lt;/li&gt;
&lt;li&gt;List Item&lt;/li&gt;
&lt;li&gt;List Item
	&lt;ul&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;blockquote&lt;/strong&gt;&lt;br /&gt;
Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus.&lt;/p&gt;&lt;/blockquote&gt;
&lt;/div&gt;
	&lt;div id="footer"&gt;
	&lt;a href="http://validator.w3.org/" title="W3C HTML Validation"&gt;XHTML&lt;/a&gt; |
	&lt;a href="http://jigsaw.w3.org/css-validator/validator-uri.html" title="W3C CSS Validation"&gt;CSS&lt;/a&gt; |
	&lt;a href="http://www.w3.org/TR/WCAG10/" title="Web Content Accessibility Guidelines"&gt;WCAG&lt;/a&gt; |
	&lt;a href="http://www.csssnippets.be"&gt;CSS Snippets&lt;/a&gt;&lt;/p&gt;
	&lt;/div&gt;
	&lt;/div&gt;
</pre>
<h3>Reset CSS</h3>
<pre title="code" class="css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-weight: inherit;
font-style: inherit;
font-size: 100%;
font-family: inherit;
vertical-align: baseline;
background-image: transparent;
}
:focus {
outline: 0;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
caption, th, td {
text-align: left;
font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
quotes: "" "";
}
</pre>
<h3>Layout CSS</h3>
<pre title="code" class="css">
body {
margin:20px;
padding:0;
height:100%;
background-color:#fff;
color:#000;
text-align:center;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:16px;
}
a {
color:#c00;
text-decoration:underline;
}
a:hover {
color:#ccc;
text-decoration:none;
}
ul {
margin:0 0 0 20px;
list-style-type:disc;
}
li {
margin:4px 0 5px 10px;
}
blockquote {
margin:1em;
padding:.5em;
background-color:#eee;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
blockquote p {
margin:.2em;
}
#container {
margin:0 auto;
padding:0;
width:650px;
text-align:left;
vertical-align: middle;
background-color:#fff;
border:1px solid #ccc;
}
#header {
margin:0;
padding:0;
height:160px;
background-color:#2c2c2c;
}
#header h1 {
margin:0;
padding:20px 0 0 20px;
font-size:1.8em;
letter-spacing:.1em;
color:#fff;
font-weight:lighter;
}
#header h2 {
margin:0;
padding:0 0 0 20px;
font-size:.9em;
font-weight:lighter;
letter-spacing:.1em;
color:#eee;
}
#leftColumn {
float:left;
margin:0;
padding:0;
width:160px;
font-size:.9em;
}
#leftColumn p {
padding:10px
}
#leftColumn h2 {
margin:0;
padding:10px 0 0 10px;
font-size:1em;
}
#leftColumn ul {
margin:0 0 0 0;
list-style:none;
}
#leftColumn li {
margin:4px 0 5px 10px;
}
#leftColumn li a {
text-decoration:underline;
}
#leftColumn li a:hover{
text-decoration:none;
}
#centerColumn {
margin:0 0 0 180px;
padding:0;
background-color:#fff;
}
#centerColumn p {
padding:10px
}
#centerColumn h2 {
margin:0;
padding:10px 0 5px 0;
font-size:1.3em;
letter-spacing:.1em;
}
#footer {
position:relative;
bottom:0;
margin:80px 0 0 0;
padding:0;
height:60px;
line-height:60px;
text-align:center;
font-size:.6em;
background-color:#fff;
border-top:1px solid #ccc;
}
</pre>



	<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;title=1%20kolom%20header%20sidebar%20content&amp;annotation=Template%20voor%201%20kolom%20header%20en%20sidebar%20en%20content.%0D%0A%0D%0A" class="google bookmarks" title="Google Bookmarks">Google Bookmarks</a>
	<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;title=1%20kolom%20header%20sidebar%20content&amp;bodytext=Template%20voor%201%20kolom%20header%20en%20sidebar%20en%20content.%0D%0A%0D%0A" class="digg" title="Digg">Digg</a>
	<a rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;Title=1%20kolom%20header%20sidebar%20content" class="blinklist" title="BlinkList">BlinkList</a>
	<a rel="nofollow" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F" class="technorati" title="Technorati">Technorati</a>
	<a rel="nofollow" href="http://twitter.com/home?status=1%20kolom%20header%20sidebar%20content%20-%20http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F" class="twitter" title="Twitter">Twitter</a>
	<a rel="nofollow" href="http://delicious.com/post?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;title=1%20kolom%20header%20sidebar%20content&amp;notes=Template%20voor%201%20kolom%20header%20en%20sidebar%20en%20content.%0D%0A%0D%0A" class="delicious" title="del.icio.us">del.icio.us</a>
	<a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;t=1%20kolom%20header%20sidebar%20content" class="facebook" title="Facebook">Facebook</a>
	<a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2F1-kolom-header-sidebar-content%2F&amp;title=1%20kolom%20header%20sidebar%20content" class="stumbleupon" title="StumbleUpon">StumbleUpon</a>

<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.csssnippets.be/2009/06/1-kolom-header-sidebar-content/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Fixed header and 1-column template</title>
		<link>http://www.csssnippets.be/2009/06/fixed-header-and-1-column-template/</link>
		<comments>http://www.csssnippets.be/2009/06/fixed-header-and-1-column-template/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 09:18:37 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[box]]></category>
		<category><![CDATA[centreren]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Xhtml Strict]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://www.csssnippets.be/?p=274</guid>
		<description><![CDATA[1 kolom gecentreerde layout met header.
<img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-1c.jpg" alt="thumb-css-fx-1c" title="thumb-css-fx-1c" width="150" height="100" class="alignnone size-full wp-image-275" />]]></description>
			<content:encoded><![CDATA[<p>1 kolom gecentreerde layout met header.<br />
<img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-1c.jpg" alt="thumb-css-fx-1c" title="thumb-css-fx-1c" width="150" height="100" class="alignnone size-full wp-image-275" /></p>
<h3>HTML</h3>
<pre title="code" class="xhtml">
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;
&lt;head&gt;
&lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt;
&lt;meta name="description" content="Enter your description here" /&gt;
&lt;meta name="keywords" content="keywords" /&gt;
&lt;link rel="stylesheet" type="text/css" href="reset.css" media="screen" /&gt;
&lt;link rel="stylesheet" type="text/css" href="style.css" media="screen" /&gt;
&lt;title&gt;fixed header an 1-column layout (basic)&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="centerColumn"&gt;
	&lt;div id="header"&gt;
	&lt;h1&gt;site title&lt;/h1&gt;
	&lt;h2&gt;fixed 1-column layout (basic)&lt;/h2&gt;
	&lt;/div&gt;
	&lt;div id="fauxRightColumn"&gt;
	&lt;h2&gt;fauxRightColumn&lt;/h2&gt;
	&lt;ul id="nav"&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari
    levat arte fessos corporis artus.&lt;/p&gt;
	&lt;/div&gt;
&lt;h2&gt;centerColumn&lt;/h2&gt;
&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
&lt;h2&gt;Header 2&lt;/h2&gt;
&lt;p&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;List Item&lt;/li&gt;
&lt;li&gt;List Item&lt;/li&gt;
&lt;li&gt;List Item
	&lt;ul&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;/ul&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;blockquote&lt;/strong&gt;&lt;br /&gt;
Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus.&lt;/p&gt;&lt;/blockquote&gt;
	&lt;div id="footer"&gt;
	&lt;a href="http://validator.w3.org/" title="W3C HTML Validation"&gt;XHTML&lt;/a&gt; |
	&lt;a href="http://jigsaw.w3.org/css-validator/validator-uri.html" title="W3C CSS Validation"&gt;CSS&lt;/a&gt; |
	&lt;a href="http://www.w3.org/TR/WCAG10/" title="Web Content Accessibility Guidelines"&gt;WCAG&lt;/a&gt; |
	&lt;a href="http://www.csssnippets.be"&gt;CSS Snippets&lt;/a&gt;&lt;/p&gt;
	&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h4>Reset CSS</h4>
<h3>CSS</h3>
<pre title="code" class="css">
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	font-family: inherit;
	vertical-align: baseline;
	background-image: transparent;
}
/* remember to define focus styles! */
:focus {
	outline: 0;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
</pre>
<h4>Layout CSS</h4>
<h3>CSS</h3>
<pre title="code" class="css">
body {
margin:.5em;
padding:0;
height:100%;
background-color:#fff;
color:#000;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:16px;
}
a {
color:#c00;
text-decoration:underline;
}
a:hover {
color:#ccc;
text-decoration:none;
}
p {
margin:6px 0;
}
blockquote {
margin:16px;
padding:8px;
background-color:#eee;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
blockquote p {
margin:.2em;
}
ul {
list-style-type:disc;
}
li {
margin:0 0 0 25px;
list-style-type:disc;
}
#centerColumn {
margin:0 auto;
padding:1em;
width:600px;
text-align:left;
vertical-align: middle;
background-color:#fff;
border:1px solid #ccc;
}
#centerColumn h2 {
margin:0 0 0 0;
padding:6px 0;
font-size:1.2em;
letter-spacing:.1em;
}
#header {
margin:0 0 0 0;
padding:0 0 0 0;
height:160px;
background-color:#fff;
border:1px solid #ccc;
}
#header h1 {
margin:0 0 -8px 0;
padding:16px 0 0 24px;
font-size:1.7em;
letter-spacing:.1em;
}
#header h2 {
margin:0 0 0 0;
padding:16px 0 0 24px;
font-size:.9em;
font-weight:lighter;
letter-spacing:.1em;
}
#fauxRightColumn {
position:relative;
float:right;
margin:.5em 0 0 .5em;
padding:0 .7em .25em .7em;
width:11em;
font-size:.9em;
background-color:#fff;
border:1px solid #ccc;
}
#fauxRightColumn h2 {
font-size:.9em;
}
#nav ul {
margin:0;
list-style:none;
}
#nav li {
margin:0 0 8px 0;
list-style:none;
}
#nav li a {
text-decoration:underline;
}
#nav li a:hover{
text-decoration:none;
}
#footer {
position:relative;
bottom:0;
margin:80px 0 0 0;
padding:0;
height:64px;
line-height:64px;
text-align:center;
font-size:.7em;
background-color:#fff;
border-top:1px solid #ccc;
}
</pre>



	<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;title=Fixed%20header%20and%201-column%20template&amp;annotation=1%20kolom%20gecentreerde%20layout%20met%20header.%0D%0A" class="google bookmarks" title="Google Bookmarks">Google Bookmarks</a>
	<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;title=Fixed%20header%20and%201-column%20template&amp;bodytext=1%20kolom%20gecentreerde%20layout%20met%20header.%0D%0A" class="digg" title="Digg">Digg</a>
	<a rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;Title=Fixed%20header%20and%201-column%20template" class="blinklist" title="BlinkList">BlinkList</a>
	<a rel="nofollow" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F" class="technorati" title="Technorati">Technorati</a>
	<a rel="nofollow" href="http://twitter.com/home?status=Fixed%20header%20and%201-column%20template%20-%20http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F" class="twitter" title="Twitter">Twitter</a>
	<a rel="nofollow" href="http://delicious.com/post?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;title=Fixed%20header%20and%201-column%20template&amp;notes=1%20kolom%20gecentreerde%20layout%20met%20header.%0D%0A" class="delicious" title="del.icio.us">del.icio.us</a>
	<a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;t=Fixed%20header%20and%201-column%20template" class="facebook" title="Facebook">Facebook</a>
	<a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-header-and-1-column-template%2F&amp;title=Fixed%20header%20and%201-column%20template" class="stumbleupon" title="StumbleUpon">StumbleUpon</a>

<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.csssnippets.be/2009/06/fixed-header-and-1-column-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fixed box template</title>
		<link>http://www.csssnippets.be/2009/06/fixed-box-template/</link>
		<comments>http://www.csssnippets.be/2009/06/fixed-box-template/#comments</comments>
		<pubDate>Mon, 15 Jun 2009 07:00:36 +0000</pubDate>
		<dc:creator>Mark</dc:creator>
				<category><![CDATA[box]]></category>
		<category><![CDATA[centreren]]></category>
		<category><![CDATA[crossbrowser]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[Xhtml Strict]]></category>
		<category><![CDATA[layout]]></category>
		<category><![CDATA[voorbeeld]]></category>

		<guid isPermaLink="false">http://www.csssnippets.be/?p=269</guid>
		<description><![CDATA[1 kolom gecentreerde layout.
<a href="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-box.jpg"><img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-box.jpg" alt="thumb-css-fx-box" title="thumb-css-fx-box" width="150" height="100" class="alignnone size-full wp-image-270" /></a>]]></description>
			<content:encoded><![CDATA[<p>1 kolom gecentreerde layout.<br />
<img src="http://www.csssnippets.be/wp-content/2009/06/thumb-css-fx-box.jpg" alt="thumb-css-fx-box" title="thumb-css-fx-box" width="150" height="100" class="alignnone size-full wp-image-270" /></p>
<h3>HTML</h3>
<pre title="code" class="xhtml">
&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"&gt;
&lt;head&gt;
&lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt;
&lt;meta name="description" content="Enter your description here" /&gt;
&lt;meta name="keywords" content="keywords" /&gt;
&lt;link rel="stylesheet" type="text/css" href="style.css" media="screen" /&gt;
&lt;title&gt;fixed box layout&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id="centerColumn"&gt;
	&lt;div id="header"&gt;
	&lt;h1&gt;site title&lt;/h1&gt;
	&lt;h2&gt;fixed box layout&lt;/h2&gt;
	&lt;/div&gt;&lt;!--//end #header//--&gt;
	&lt;div id="nav"&gt;
	&lt;ul&gt;
	&lt;li&gt;&lt;a href-"#" title="Home"&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href-"#" title="About"&gt;About&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href-"#" title="Gallery"&gt;Gallery&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href-"#" title="Contact"&gt;Contact&lt;/a&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/div&gt;&lt;!--//end #nav//--&gt;
&lt;h2&gt;centerColumn&lt;/h2&gt;
&lt;p&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus, si Palatinas videt aequos aras remque Romanam Latiumque felix alterum in lustrum meliusque semper prorogat aevom, quaeque Aventinum tenet Algidumque, quindecim Diana preces virorum curat et votis puerorum amicas adplicat auris.&lt;/p&gt;
&lt;h2&gt;Header 2&lt;/h2&gt;
&lt;p&gt;&lt;a href="#" title="link title"&gt;Link Item&lt;/a&gt;&lt;/p&gt;
	&lt;ul&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;li&gt;List Item&lt;/li&gt;
	&lt;li&gt;List Item
		&lt;ul&gt;
		&lt;li&gt;List Item&lt;/li&gt;
		&lt;li&gt;List Item&lt;/li&gt;
		&lt;/ul&gt;&lt;/li&gt;
	&lt;/ul&gt;
	&lt;blockquote&gt;&lt;p&gt;&lt;strong&gt;blockquote&lt;/strong&gt;&lt;br /&gt;Augur et fulgente decorus arcu Phoebus acceptusque novem Camenis, qui salutari levat arte fessos corporis artus.&lt;/p&gt;&lt;/blockquote&gt;
	&lt;div id="footer"&gt;
	&lt;a href="http://validator.w3.org/" title="W3C HTML Validation"&gt;XHTML&lt;/a&gt; &#124; &lt;a href="http://jigsaw.w3.org/css-validator/validator-uri.html" title="W3C CSS Validation"&gt;CSS&lt;/a&gt; &#124; &lt;a href="http://www.w3.org/TR/WCAG10/" title="Web Content Accessibility Guidelines"&gt;WCAG&lt;/a&gt; &#124; &lt;a href="http://www.csssnippets.be/" title="CSS Snippets"&gt;CSS Snippets&lt;/a&gt;
	&lt;/div&gt;
	&lt;!--//end #footer//--&gt;
&lt;/div&gt;&lt;!--//end #centerColumn//--&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<h3>CSS</h3>
<pre title="code" class="css">
body {
margin:3em;
padding:0;
height:100%;
background-color:#fff;
color:#000;
text-align:center;
font-family:Arial, Helvetica, sans-serif;
font-size:.9em;
}
a {
color:#c00;
text-decoration:underline;
}
a:hover {
color:#eee;
text-decoration:none;
}
blockquote {
margin:1em;
padding:.5em;
background-color:#eee;
border-top:1px solid #ccc;
border-bottom:1px solid #ccc;
}
blockquote p {
margin:.2em;
}
#centerColumn {
margin:0 auto;
padding:1em;
width:38em;
text-align:left;
vertical-align: middle;
background-color:#ccc;
border:1px solid #999;
}
#centerColumn h2 {
margin:0 0 -.5em 0;
padding:.75em 0 0 0;
font-size:1em;
letter-spacing:.1em;
}
#header {
margin:-1em -1em 0 -1em;
padding:0 0 0 0;
height:5em;
background-color:#fff;
}
#header h1 {
margin:0 0 -.6em 0;
padding:.5em 0 0 1em;
font-size:1.5em;
letter-spacing:.1em;
}
#header h2 {
margin:0;
padding:1em 0 0 1.75em;
font-size:.9em;
font-weight:300;
letter-spacing:.1em;
}
#nav {
margin:0 0 1em 0;
padding:.4em 0 0 0;
}
#nav ul {
margin:0;
padding:0;
list-style:none;
}
#nav li {
margin:0;
padding:.25em;
display:inline;
}
#footer {
position:relative;
bottom:0;
margin:5em 0 0 0;
padding:0;
height:4em;
line-height:4em;
text-align:center;
font-size:.7em;
background-color:#ccc;
border-top:1px solid #999;
}
</pre>



	<a rel="nofollow" href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;title=Fixed%20box%20template&amp;annotation=1%20kolom%20gecentreerde%20layout.%0D%0A" class="google bookmarks" title="Google Bookmarks">Google Bookmarks</a>
	<a rel="nofollow" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;title=Fixed%20box%20template&amp;bodytext=1%20kolom%20gecentreerde%20layout.%0D%0A" class="digg" title="Digg">Digg</a>
	<a rel="nofollow" href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;Title=Fixed%20box%20template" class="blinklist" title="BlinkList">BlinkList</a>
	<a rel="nofollow" href="http://technorati.com/faves?add=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F" class="technorati" title="Technorati">Technorati</a>
	<a rel="nofollow" href="http://twitter.com/home?status=Fixed%20box%20template%20-%20http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F" class="twitter" title="Twitter">Twitter</a>
	<a rel="nofollow" href="http://delicious.com/post?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;title=Fixed%20box%20template&amp;notes=1%20kolom%20gecentreerde%20layout.%0D%0A" class="delicious" title="del.icio.us">del.icio.us</a>
	<a rel="nofollow" href="http://www.facebook.com/share.php?u=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;t=Fixed%20box%20template" class="facebook" title="Facebook">Facebook</a>
	<a rel="nofollow" href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fwww.csssnippets.be%2F2009%2F06%2Ffixed-box-template%2F&amp;title=Fixed%20box%20template" class="stumbleupon" title="StumbleUpon">StumbleUpon</a>

<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://www.csssnippets.be/2009/06/fixed-box-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

