Jest nagłówek, potem, niżej chciałbym żeby w lini były 3 divy: menu, newsy i 3 div.
Problem jest taki, że ten 3 div ma ustawienie w pionie zależne od długości tekstu w środkowym divie.
Tutaj trochę kodu
Wiem, że może to być coś banalnego jednak nie mogę znaleźć przyczyny.
<div id="main"> <div id="MENU"><?php include "include/produkty.php"; ?> </div> <div id="TRESC"> <?php $go = $_GET['go']; } else include "page/start.html"; ?> </div> <div id="KONTAKT"><?php include "include/kontakt.php"; ?></div>
I style
#MENU { width: 210px; float: left; background-color: #98b3d0; clear: both; } #KONTAKT { width: 240px; float: right; background-color: #98b3d0; vertical-align: top; } #TRESC { width: 400px; background-color: #98b3d0; }