Become a webdsign master


How to Design a Two Column Layout for Your Website Using CSS (www.imagination.gs)

(writing HTML or CSS code. You just need some
basic working knowledge otherwise this
There are many ways to design a two columntutorial  will  be  incomprehensible.
layout using Cascading Style Sheets (CSS).
This article takes you through the steps ofUsing  Float  to  Define  2  Columns
using one method. The code given here will
also allow you to add an optional header andWhile there are many methods of using CSS to
footer that spans both columns to your pagescreate a two-column site, this tutorial uses
should  you  wish.the float property to move one column to the
side of another. In some ways, this method is
Prerequisitesmore flexible than the absolute positioning
method currently used on It also allows you
For you to be able to use this article, youto add optional header and footer bars that
need to be able to code directly in both HTMLspan  both  columns  if  you  wish.
and CSS. If this is not the case, you may
prefer to use a visual web editor to designCompatibility
your site instead. For example, Dreamweaver
comes with numerous templates to build 2 or 3The two-column CSS given here has been tested
column websites using CSS. My Dreamweaverto work on Internet Explorer 6 and 7, Opera,
Tutorial takes you through the steps ofSafari and Firefox ( Get Firefox with Google
creating a CSS-based two column website withToolbar  )
this  editor.
The  HTML  Code  for a Basic 2 Column Website
My tutorials for the free web editors Nvu and
KompoZer can also be used to create 2 columnThe HTML part of the code is fairly simple.
sites,  albeit  not  using  CSS.You basically need 2 div blocks, one for each
column.
Note that you do not have to be an expert in



1 A B C D E 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128