<?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>Blue Lobster Art and Design - Sacramento Web Design and Graphic Design &#187; box model</title>
	<atom:link href="http://blulob.com/tag/box-model/feed/" rel="self" type="application/rss+xml" />
	<link>http://blulob.com</link>
	<description>Web and graphic design</description>
	<lastBuildDate>Wed, 29 Sep 2010 23:46:07 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Master Your Website Layout with these 6 CSS Properties</title>
		<link>http://blulob.com/2009/06/03/6-ways-play-css-layers/</link>
		<comments>http://blulob.com/2009/06/03/6-ways-play-css-layers/#comments</comments>
		<pubDate>Thu, 04 Jun 2009 04:51:11 +0000</pubDate>
		<dc:creator>Dawn Pedersen</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box model]]></category>
		<category><![CDATA[layers]]></category>
		<category><![CDATA[positioning]]></category>

		<guid isPermaLink="false">http://blulob.com/?p=3425</guid>
		<description><![CDATA[If you&#8217;re new to designing with CSS layout, it&#8217;s simple to get started with these six positioning properties: z-index position float clear top left There are more positioning properties, but we&#8217;ll begin with these most practical ones. To begin, here are two divs with very simple CSS rules. None of the special positioning properties have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblulob.com%2F2009%2F06%2F03%2F6-ways-play-css-layers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblulob.com%2F2009%2F06%2F03%2F6-ways-play-css-layers%2F&amp;source=bluelobsterart&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<div id="attachment_3492" class="wp-caption alignright" style="width: 160px"><img class="size-full wp-image-3492" title="Fancy div arranging" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/mini-150.gif" alt="Fancy div arranging" width="150" height="150" /><p class="wp-caption-text">Fancy div arranging</p></div>
<p>If you&#8217;re new to designing with CSS layout, it&#8217;s simple to get started with these six positioning properties:<br />
<span id="more-3425"></span></p>
<ol>
<li>z-index</li>
<li>position</li>
<li>float</li>
<li>clear</li>
<li>top</li>
<li>left</li>
</ol>
<p>There are more positioning properties, but we&#8217;ll begin with these most practical ones.</p>
<p>To begin, here are two divs with very simple CSS rules. None of the special positioning properties have been applied yet (click on this image or any image below to view the live page.) We&#8217;ll call these the &#8220;simple&#8221; divs.</p>
<div id="attachment_3441" class="wp-caption alignnone" style="width: 460px"><a href="http://blulob.com/previews/css-layers-00.html"><img class="size-full wp-image-3441" title="CSS divs with no special positioning" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-00.gif" alt="CSS divs with no special positioning" width="450" height="387" /></a><p class="wp-caption-text">CSS divs with no special positioning</p></div>
<p>We&#8217;re using simple HTML too:</p>
<p class="code">&lt;body&gt;<br />
&lt;div id=&#8221;box1&#8243;&gt;<br />
[text]<br />
&lt;/div&gt;<br />
&lt;div id=&#8221;box2&#8243;&gt;<br />
[text]<br />
&lt;/div&gt;<br />
&lt;/body&gt;</p>
<h4>1. Z-Index</h4>
<p>The <strong>z-index</strong> CSS property identifies how &#8220;close&#8221; or &#8220;far away&#8221; a CSS layer is from the viewer. In other words, width goes in one dimension horizontally, height adds a second dimension vertically, and z-index adds a third dimension on an axis perpendicular to the screen. This is useful when divs overlap. The lower the z-index (e.g. z-index: 1;), the further back a div is. The higher it is (e.g. z-index: 99;), the more forward it is. This technique requires that you set the <strong>position</strong> to <em>relative</em> (we&#8217;ll look at <strong>position </strong>in greater detail later.)</p>
<p>Below, I&#8217;ve adjusted the margins of the second div so that the two boxes overlap. The purple box has a <strong>z-index</strong> of <em>1</em>, putting it behind the orange box which has a higher <strong>z-index</strong> of <em>2</em>. Both have a <strong>position</strong> of <em>relative</em>.</p>
<div id="attachment_3444" class="wp-caption alignnone" style="width: 460px"><a href="http://blulob.com/previews/css-layers-01.html"><img class="size-full wp-image-3444" title="Overlapping divs with different z-index values" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-01.gif" alt="Overlapping divs with different z-index values" width="450" height="387" /></a><p class="wp-caption-text">Overlapping divs with different z-index values</p></div>
<p>Here&#8217;s what happens if we switch the z-index values of the two boxes: the purple box moves to the front.</p>
<div id="attachment_3449" class="wp-caption alignnone" style="width: 460px"><a href="http://blulob.com/previews/css-layers-02.html"><img class="size-full wp-image-3449" title="Switch the z-index values" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-02.gif" alt="Switch the z-index values" width="450" height="387" /></a><p class="wp-caption-text">Switch the z-index values</p></div>
<h4>2. Position</h4>
<p>The <strong>position </strong>CSS property can be either set to static, relative, absolute, fixed. The default position is static.</p>
<ul>
<li><em>Static</em> divs get plunked down right where they are in the flow of the HTML.</li>
<li><em>Relative</em> divs are like <em>static </em>divs but can be moved relative to the previous content.</li>
<li><em>Absolute</em> divs get pulled out of the HTML flow and act independently of all other divs.</li>
<li><em>Fixed</em> divs work like <em>absolute </em>divs with a twist: they stay in the same place in the browser window even when you scroll down.</li>
</ul>
<p>We&#8217;ve looked at an application of the <em>relative </em>position above. Let&#8217;s go back to our simple divs and add <em>absolute </em>positions instead. Both divs are now positioned relative to top-left of the browser window instead of relative to each other.</p>
<div id="attachment_3453" class="wp-caption alignnone" style="width: 460px"><a href="http://blulob.com/previews/css-layers-03.html"><img class="size-full wp-image-3453" title="Absolute positioning" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-03.gif" alt="Absolute positioning" width="450" height="387" /></a><p class="wp-caption-text">Absolute positioning</p></div>
<p>A div with a <em>fixed </em>position stays in one place as you scroll.</p>
<div id="attachment_3457" class="wp-caption alignnone" style="width: 460px"><a href="http://blulob.com/previews/css-layers-09.html"><img class="alignnone size-full wp-image-3466" title="Fixed positioning" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-09.gif" alt="Fixed positioning" width="450" height="387" /><br />
<img class="alignnone size-full wp-image-3467" title="Fixed positioning" src="http://blulob.com/wordpress/wp-content/uploads/2009/06/css-layers-09a.gif" alt="Fixed positioning" width="450" height="387" /></a><p class="wp-caption-text">Fixed positioning</p></div>
<p>Next: <a href="http://blulob.com/2009/06/03/6-ways-play-css-layers/2/">3. Float</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blulob.com/2009/06/03/6-ways-play-css-layers/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>3-Column Web Page Using CSS Layers in Dreamweaver CS4</title>
		<link>http://blulob.com/2009/03/10/create-a-3-column-web-page-using-css-layers/</link>
		<comments>http://blulob.com/2009/03/10/create-a-3-column-web-page-using-css-layers/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 16:38:36 +0000</pubDate>
		<dc:creator>Dawn Pedersen</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Dreamweaver]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[box model]]></category>
		<category><![CDATA[layers]]></category>

		<guid isPermaLink="false">http://bluelobsterart.com/wordpress/?p=422</guid>
		<description><![CDATA[Doing layout for Web pages with tables is so 1998. Tables should be used for data, not to arrange the elements on your Web page. A better method is to use CSS layers. They are much easier to format than tables, once you get the hang of it. But the best thing is that if [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fblulob.com%2F2009%2F03%2F10%2Fcreate-a-3-column-web-page-using-css-layers%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fblulob.com%2F2009%2F03%2F10%2Fcreate-a-3-column-web-page-using-css-layers%2F&amp;source=bluelobsterart&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p><div id="attachment_402" class="wp-caption alignleft" style="width: 160px"><img src="http://bluelobsterart.com/images/tutorials/css-layers-26-mini.gif" alt="mini results" title="mini results" width="150" height="121" class="size-full wp-image-402" /><p class="wp-caption-text">3-Column CSS Layout</p></div><img src="http://bluelobsterart.com/wordpress/wp-content/uploads/2009/03/dreamweaver_cs4.gif" alt="Dreamweaver CS4" title="Dreamweaver CS4" width="30" height="30" class="alignright size-full wp-image-458" />Doing layout for Web pages with tables is <em>so</em> 1998. Tables should be used for data, not to arrange the elements on your Web page. A better method is to use CSS layers. They are much easier to format than tables, once you get the hang of it. But the best thing is that if you use CSS layers to design your site, you can make a site-wide layout change in the blink of an eye.</p>
<p>If you&#8217;ve never tried CSS layers for your site layout, try this one. Dreamweaver CS4 makes it a cinch, if you pay attention to the details.</p>
<p><span id="more-422"></span></p>
<p class="feedback">Your feedback is encouraged and much appreciated!</p>
<p>P.S. If you do not have Firefox installed, I highly recommend you <a href="http://www.mozilla.com/en-US/firefox/">install it</a>.</p>
<p>&nbsp;</p>
<h4>What You Should Know First</h4>
<ul>
<li><a href="http://bluelobsterart.com/wordpress/2009/03/11/the-dreamweaver-cs4-workspace/">The Dreamweaver CS4 Workspace</a></li>
</ul>
<p>&nbsp;</p>
<h4>Step 1: Create the Body</h4>
<p>We&#8217;ll build a Web page design essentially like the class Web site I built at <a href="http://www.nhsdesigns.com">nhsdesigns.com</a>. First, we&#8217;ll set up a gray background behind it all, and set the font style. To do this, we will use CSS to redefine the formatting of the &lt;body&gt; tag.</p>
<ol>
<li>Create a new, blank HTML document in Dreamweaver.</li>
<li>Save the file as <strong>index.html</strong> inside your CSS Layers folder. </li>
<li>In the Document tool bar, change the Title to <strong>CSS Layers</strong>. </li>
<li>Show the CSS Styles (Window &gt; CSS Styles) and click on the <em>All</em> button.</li>
<li>Click on the <em>New CSS Rule</em> icon. <br />
                <img src="http://bluelobsterart.com/images/tutorials/css-layers-01.gif" width="237" height="241" alt="CSS Styles panle" />                </li>
<li>Use these settings and click OK:
<ol type="a">
<li>Selector Type: <strong>Tag</strong></li>
<li>Selector Name: <strong>body</strong></li>
<li>Rule Definition: <strong>New Style Sheet File</strong><br />
      <img src="http://bluelobsterart.com/images/tutorials/css-layers-02.gif" width="350" height="279" alt="New CSS Rule" />    </li>
</ol>
</li>
<li>Save the style sheet file as <strong>main.css</strong> in your CSS Layers folder.<br />
                <img src="http://bluelobsterart.com/images/tutorials/css-layers-03.gif" width="350" height="278" alt="Save Style Sheet File as" />                </li>
<li>In the <em>CSS Rule definition for body</em> box, use these settings and click OK:
<ol type="a">
<li>In the Type category, change the Font-family to <strong>Verdana, Geneva, sans-serif</strong>, the Font-size to <strong>10px</strong>, and the Color to <strong>#000000</strong>.</li>
</ol>
</li>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-04.gif" width="450" height="324" alt="CSS Rule definition for body" /></p>
<ol>
<ol start="2" type="a">
<li>In the Background category, change the Background-color to <strong>#CCCCCC</strong> (a light gray).</li>
</ol>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-05.gif" width="450" height="324" alt="CSS Rule Definition for body" /></p>
<ol start="9">
<li>Save both the source code and main.css (Save &gt; Save All.) With index.html active, press <strong>F12</strong> to view the page in a browser. It should look like this:</li>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-06.gif" width="450" height="362" alt="end of step one" /></p>
<p>&nbsp;</p>
<h4>Step 2: Create the Outer Container </h4>
<p>Next, we&#8217;ll create the large white layer that contains  everything else. Using this layer to contain the others layers will create a nice, 15-pixel white border around your page. To do this, we will create an  ID selector, which can be used only once by a single div tag on the page. ID styles begin with a pound (#) sign.</p>
<ol>
<li>In the CSS Styles panel, click on the <strong>New CSS Style</strong> icon. </li>
<li>In the New CSS Rule box, use these setting and click OK:
<ol type="a">
<li>Selector Type: <strong>ID</strong></li>
<li>Selector Name: <strong>#container</strong></li>
<li>Rule Definition: <strong>main.css</strong></li>
</ol>
</li>
<li>In the <em>CSS Rule definition for #container </em> box, use these settings and click OK twice: </li>
</ol>
<table width="100%" border="0" cellspacing="1" cellpadding="2" bgcolor="#CCCCCC">
<tr>
<th>Category</th>
<th>Subcategory</th>
<th>Setting</th>
<th>Value</th>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#FFFFFF">Background</td>
<td valign="top" bgcolor="#FFFFFF">Background color: </td>
<td valign="top" bgcolor="#FFFFFF">#ffffff</td>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#FFFFFF">Box</td>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">720 pixels </td>
</tr>
<tr>
<td rowspan="5" valign="top" bgcolor="#FFFFFF">&nbsp;</td>
<td valign="top" bgcolor="#FFFFFF">Padding  (UNCHECK same for all)</td>
<td valign="top" bgcolor="#FFFFFF">Top</td>
<td valign="top" bgcolor="#FFFFFF">0</td>
</tr>
<tr>
<td rowspan="4" valign="top" bgcolor="#FFFFFF">Margin  (UNCHECK same for all)</td>
<td valign="top" bgcolor="#FFFFFF">Top</td>
<td valign="top" bgcolor="#FFFFFF">0</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Right</td>
<td valign="top" bgcolor="#FFFFFF">Auto</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Bottom</td>
<td valign="top" bgcolor="#FFFFFF">0</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Left</td>
<td valign="top" bgcolor="#FFFFFF">Auto</td>
</tr>
<tr>
<td colspan="2" rowspan="3" valign="top" bgcolor="#FFFFFF">Border (same for all) </td>
<td valign="top" bgcolor="#FFFFFF">Style</td>
<td valign="top" bgcolor="#FFFFFF">solid</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">15 pixels </td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Color</td>
<td valign="top" bgcolor="#FFFFFF">#ffffff</td>
</tr>
</table>
<ol start="4">
<li>To insert the layer into the page, click inside the page and choose the following menu command: <strong>Insert &gt; Layout Objects &gt; Div Tag</strong>. </li>
<li>In the dialog box, select ID: <strong>container</strong> and click <strong>OK</strong>.<br />
    <img src="http://bluelobsterart.com/images/tutorials/css-layers-07.gif" alt="Insert Div Tag" width="350" height="153" />    </li>
<li>Save both the source code and main.css (Save &gt; Save All.) With index.html active, press <strong>F12</strong> to view the page in a browser. It should look like this:</li>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-08.gif" width="450" height="362" alt="end of step 2" /></p>
<p>&nbsp;</p>
<h4>Step 3: Create the Header</h4>
<p>Here we&#8217;ll create a header area in which a banner image could go  later. It will have a baby blue background, and have a 1-pixel white  bottom border which separates it from the navigation bar. </p>
<ol>
<li>Click inside the <em>#container</em> layer. Delete the text that automatically filled the layer but leave your cursor inside the layer. </li>
<li>Let&#8217;s try a quicker way to insert the Div tag:
<ol type="a">
<li>Open the Insert panel (Window &gt; Insert). </li>
<li>Make sure that Common is selected in the drop-down menu at the top of the panel.</li>
<li>Click on the <em>Insert Div Tag</em> button.<br />
        <img src="http://bluelobsterart.com/images/tutorials/css-layers-09.gif" width="237" height="246" alt="Insert Div Tag" /></li>
</ol>
</li>
<li>In the <em>Insert Div Tag</em>  box, click on the New CSS Rule button.<br />
    <img src="http://bluelobsterart.com/images/tutorials/css-layers-10.gif" width="350" height="152" alt="Insert Div Tag" />    </li>
<li>In the <em>New CSS Rule  </em> box, use these settings and click OK:
<ol type="a">
<li>Selector Type: <strong>ID</strong></li>
<li>Selector Name: <strong>#header</strong></li>
<li>Rule Definition: <strong>main.css</strong></li>
</ol>
</li>
<li>In the <em>CSS Rule definition for #header </em> box, use these settings and click OK twice: </li>
</ol>
<table width="100%" border="0" cellspacing="1" cellpadding="2" bgcolor="#CCCCCC">
<tr>
<th>Category</th>
<th>Subcategory</th>
<th>Setting</th>
<th>Value</th>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#FFFFFF">Background </td>
<td valign="top" bgcolor="#FFFFFF">Background color: </td>
<td valign="top" bgcolor="#FFFFFF">#22b5ff</td>
</tr>
<tr>
<td colspan="2" rowspan="2" valign="top" bgcolor="#FFFFFF">Box </td>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">720 pixels </td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Height</td>
<td valign="top" bgcolor="#FFFFFF">220 pixels </td>
</tr>
<tr>
<td rowspan="3" valign="top" bgcolor="#FFFFFF">Border   (UNCHECK same for all in all 3 columns)</td>
<td rowspan="3" valign="top" bgcolor="#FFFFFF">Bottom</td>
<td valign="top" bgcolor="#FFFFFF">Style</td>
<td valign="top" bgcolor="#FFFFFF">solid</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">1 pixel</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Color</td>
<td valign="top" bgcolor="#FFFFFF">#ffffff</td>
</tr>
</table>
<ol start="6">
<li>Save both the source code and main.css (Save &gt; Save All.) With index.html active, press <strong>F12</strong> to view the page in a browser. It should look like this:</li>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-11.gif" width="450" height="363" alt="end of step 3" /></p>
<p>&nbsp;</p>
<h4>Step 4: Create the Navigation Area</h4>
<p>We need a rectangle below the banner for links. It will have a dark  blue background and white text. It will also have a 1-pixel white  bottom border, and 10 pixels of padding around its text. First, we need  to tell Dreamweaver precisely where to put it (after the header div) by viewing the code. </p>
<ol>
<li>Click on the <em>Code</em> button on the Document tool bar. </li>
<li>Find this bit of code and click just before it:<br />
      &lt;/div&gt;<br />
      &lt;/body&gt;<br />
      &lt;/html&gt;<br />
    <img src="http://bluelobsterart.com/images/tutorials/css-layers-12.gif" width="350" height="225" alt="code view" />    </li>
<li>Click on the <em>Design</em> button on the Document tool bar. </li>
<li>In the Insert panel, click on the <em>Insert Div Tag</em> button.</li>
<li>Click on the <em>New CSS Rule</em> button.</li>
<li>In the <em>New CSS Rule </em> box, use these settings and click OK:
<ol type="a">
<li>Selector Type: <strong>ID</strong></li>
<li>Selector Name: <strong>#navigation</strong></li>
<li>Rule Definition: <strong>main.css</strong></li>
</ol>
</li>
<li>In the <em>CSS Rule definition for #navigation </em> box, use these settings and click OK twice: </li>
</ol>
<table width="100%" border="0" cellspacing="1" cellpadding="2" bgcolor="#CCCCCC">
<tr>
<th>Category</th>
<th>Subcategory</th>
<th>Setting</th>
<th>Value</th>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#FFFFFF">Type</td>
<td valign="top" bgcolor="#FFFFFF">Color</td>
<td valign="top" bgcolor="#FFFFFF">#ffffff</td>
</tr>
<tr>
<td colspan="2" valign="top" bgcolor="#FFFFFF">Background </td>
<td valign="top" bgcolor="#FFFFFF">Background color: </td>
<td valign="top" bgcolor="#FFFFFF"><span class="li2deep">#005ac9</span></td>
</tr>
<tr>
<td colspan="2" rowspan="2" valign="top" bgcolor="#FFFFFF">Box </td>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">700 pixels </td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Height</td>
<td valign="top" bgcolor="#FFFFFF">20 pixels </td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">&nbsp;</td>
<td valign="top" bgcolor="#FFFFFF">Padding (same for all) </td>
<td valign="top" bgcolor="#FFFFFF">Top</td>
<td valign="top" bgcolor="#FFFFFF">10 pixels</td>
</tr>
<tr>
<td rowspan="3" valign="top" bgcolor="#FFFFFF">Border (UNCHECK same for all in all 3 columns)</td>
<td rowspan="3" valign="top" bgcolor="#FFFFFF">Bottom</td>
<td valign="top" bgcolor="#FFFFFF">Style</td>
<td valign="top" bgcolor="#FFFFFF">solid</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Width</td>
<td valign="top" bgcolor="#FFFFFF">1 pixel</td>
</tr>
<tr>
<td valign="top" bgcolor="#FFFFFF">Color</td>
<td valign="top" bgcolor="#FFFFFF">#ffffff</td>
</tr>
</table>
<ol start="8">
<li>Save both the source code and main.css (Save &gt; Save All.) With index.html active, press <strong>F12</strong> to view the page in a browser. It should look like this:</li>
</ol>
<p><img src="http://bluelobsterart.com/images/tutorials/css-layers-13.gif" width="450" height="362" alt="end of step 4" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blulob.com/2009/03/10/create-a-3-column-web-page-using-css-layers/feed/</wfw:commentRss>
		<slash:comments>31</slash:comments>
		</item>
	</channel>
</rss>

