static void

CSS Layouts

Layout experiments which work in Netscape 4 (sort of), IE5/6 and Moz (with minor problems).

2 column

No style

Wraps under left float


float:left;width:80%

"ALA-style"


No style

Wraps under right float


float:left;

Does not wrap under left float

In Mozilla only, if wider than available space, is completely under left float


position:relative;height:20em; just to frame the absolute positioned boxes below.
margin: 10px 10px 10px 200px;


3 column

float:left;width:28%; border:1%;padding:1%;

Pixel paddings, margins and borders aren't compatible with percentage content. One amendment may be to use the SMBH or Tantek Hack to show IE a width of 33% and Mozilla a 29% width.