Frank Mehl: Bereiche in einer Website

Beitrag lesen

Hi!

Mit CSS geht das sehr gut. Lege Dir eine css-Datei an, zB. format.css (klassischer Name).
Dort legst Die die Bereiche fest, zB.

#container {width: 680px; margin-right: auto; margin-left: auto; font-family: Arial, Helvetica, sans-serif; color: #7B917C; background-color:#ECF2E8;}
#container #head {height:153px;border-right:solid 1px #7B917C; border-left:solid 1px #7B917C; border-top:solid 1px #7B917C;}
#container #url {background-color:#F5F8F3; height:50px; border-right:solid 1px #7B917C; border-left:solid 1px #7B917C;}

(ein Ausschnitt aus meiner aktuellen css)

Dann schreibst Du im html:
<body>
<div id="container>
 <div id="head"> Hier ist Dein Logo oder sonstiger Kopfbereichstext</div>
 <div id=...>...</div>
</div>
</body>...