Guten Morgen zusammen
ich beschäftige mich gerade eine Runde mit CSS-Positionierung. Jetzt ist mir im Opera doch ein ziemlich merkwürdiges Verhalten aufgefallen. Könnt ihr mir sagen, warum der Opera (Version 6.01) hier die beiden Blöcke 1 und 3 nicht genau nebeneinander stellt? Andere aktuellen Browser stellen alles korrekt dar.
Danke schon einmal im Voraus
Gruß Hansjörg
Hier der zugehörige Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>
CSS-Positionierung
</title>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
</head>
<body>
<p style="position:fixed; left:5px; top:60px;width:60px;height:60px;">1</p>
<p style="position:fixed; left:5px; bottom:60px;width:60px;height:60px;">2</p>
<p style="position:fixed; right:5px; top:60px;width:60px;height:60px;">3</p>
<p style="position:fixed; right:5px; bottom:60px;width:60px;height:60px;">4</p>
</body>
</html>