crips
Освоившийся
Дата регистрации:
18.12.2011 13:05:02
Сообщений: 28
верстка самая обычная:
<body>
<div id='content'>
<div id='left'>
лево
</div>
<div id='right'>
центр
</div>
</div>
<div id='footer'>
2012
</div>
</body>
CSS:
body, html {
height: 100%;
margin: 0px;
}
#left{
width: 200px;
float:left;
border-right: 1px solid #000;
}
#right {
margin-right: 5px;
border-left: 1px solid #000;
margin-left: 200px;
padding-left: 10px;
}
#content {
margin-left: 5px;
padding-bottom: 50px;
}
#footer {
margin-top: 5px;
border-top: 1px solid #000;
height: 50px;
}