Re: CSS vs. Tables

Maybe this will work:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
<html><head><title>absolute divs</title>
<style><!-- div	{ position:absolute } --></style></head>
<body>
<div align="left">left</div>
<div align="center">center</div>
<div align="right">right</div>
<br />
<div style="text-align: left; width: 100%">left</div>
<div style="text-align: center; width: 100%">center</div>
<div style="text-align: right; width: 100%">right</div>
<br /><hr /><p>This is a test</p>
</body></html>

Timothy Luoma wrote:

> It gave me an idea.... "Could <div>s give me one line that has left-,
> center-, and right- aligned text?"
> 
> Something like this:
> 
> left                        center                   right
> 
> (Which is something that I can only do using Tables, as far as I know)
> 
> So I tried this (in Opera)
> 
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Strict//EN">
> <html><head><title>absolute divs</title>
> <style><!-- div { position:absolute } --></style></head>
> <body>
> <div align="left">left</div>
> <div align="center">center</div>
> <div align="right">right</div>
> <br /><hr /><p>This is a test</p>
> </body></html>
> 
> It fails totally in IE (I don't have Netscape installed, so I can't say
> how it works there)

Received on Thursday, 12 April 2001 14:01:39 UTC