Re: CSS positioning

Chris Lilley wrote:

> > right now I have to use tables to have them side by side....
>
> You have two real choices - use float, or use absolute positioning. I
> would try float first as it is likely to be more robust with different
> window sizes.

Well, NN4 still has some rendering bugs - For example,

<HTML>
  <HEAD>
    <STYLE TYPE="text/css">
      <!--
IMG {
  float: left;
}
      -->
    </STYLE>
  </HEAD>
  <BODY>
    <P><IMG SRC="img1">Description</P>
    <P><IMG SRC="img2">Explanatory text</P>
  </BODY>
</HTML>

renders as

+----+ +----+ Description
|img2| |img1|
+----+ +----+

Explanatory text

So if the web site should work with other than beta browsers, too, you can not
rely on that stuff to work.

CU
   Simon

Received on Friday, 28 August 1998 12:57:24 UTC