I am trying to position some elements on a page at absolute positions. I used the following test code (I replaced the <> with [] to get through the HTML cleaner):
<body>
<div style="position=absolute; top=100px; left=100px"> HELLO 100,100</div>
<div style="position=absolute; top=200px; left=100px"> HELLO 200,100</div>
<div style="position=absolute; top=0px; left=0px"> HELLO 0,0</div>
</body>
This does what it is apparently supposed to do in IE, but simply flows the divs one below each other in FF (3.0). I know CSS support is pretty variable. What am I missing, and is there a more standard way to do this?