logo search
Vvedenie_v_Veb_programmirovanien_2 / Vvedenie_v_Veb_programmirovanien_2

Пример 1. Двухколоночный контейнерный макет сайта с применением css.

top

left-side

center

footer

<html>

<head>

<style>

#left-side {

float:left;

width:200px;

}

#center {

margin-left:200px;

}

#footer {

clear:both;

}

</style>

</head>

<body>

<div id="top">

</div>

<div id="content">

<div id="left-side"></div>

<div id="center"></div>

</div>

<div id="footer">

</div>

</body>

</html>