Maybe this:
http://css.maxdesign.com.au/floatutorial/
tutorial 2 and 3 might help?
H.
> I'm trying to learn how to use CSS rather than burdening my code with
> lots of tables.
In article
<7ca7ba19-5a7b-4ebd-ae4e-28c3b7ce1429@m44g2000hsc.googlegroups.com>,
> I'm trying to learn how to use CSS rather than burdening my code with
> lots of tables.
[quoted text clipped - 6 lines]
> <div style="float:right">1111</div>
> <div style="float:right">2222</div>
...
> I've also tried the following.
> <div width="100">
> <div>1111</div>
...
> Neither of these approaches gives me the three div's in a row. Any
> hints would be appreciated!!
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>blabla</title>
<style type="text/css">
div {float:left; border:1px solid;padding: .4em;}
</style>
</head>
<body>
<div>1111</div>
<div>2222</div>
<div>3333</div>
</body>
</html>

Signature
dorayme