Potreboval bych poradit...jak zarovnat tohle na stred?
Kód:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Stranka</title> <style> #obsah {position: absolute; width: 610px; top: 100px; left: 150px; background-color: red} #hlavicka {position: absolute; width: 760px; height: 100px; top: 0px; left: 0px; background-color: green} #levy {position: absolute; width: 150px; top: 100px; left: 0px; background-color: blue} </style> </head> <body> <div id="hlavicka">Hlavička</div> <div id="levy">Levý sloupecL</div> <div id="obsah">Brm</div> </body> </html>