![user posted image](https://pp.userapi.com/c841020/v841020592/190fa/t2xE9Ix_fzw.jpg)
Начал делать, но 2 пункт нихрена не получается, помогли
<html>
<head>
<meta charset="UTF-8" />
<title>Тест - Пицик Евгений</title>
<style type="text/css">
#top {
background: rgba(33, 150, 243, 0.5);
width: 100%;
height: 100px;
display: table;
}
#menu{
display: table-cell;
vertical-align: bottom;
text-align: center;
}
#content{
width:100%;
padding: 20px 0px;
}
#content-left{
background: rgba(33, 150, 243, 0.5);
width:200px;
height: 500px;
float:left;
}
#content-center{
background-color: rgba(33, 150, 243, 0.5);
width:100%;
min-height: 100px;
float:left;
}
#content-right{
background: rgba(33, 150, 243, 0.5);
width:200px;
height: 500px;
float:left;
}
#bottom {
}
</style>
</head>
<body>
<div id="top">
<div id="menu">меню | меню | меню | меню </div>
</div>
<div style="clear:both;"></div>
<div id="content">
<div id="content-left">200px </div>
<div id="content-center">-Резиновая часть-</div>
<div id="content-right">200px</div>
</div>
<div id="bottom"> </div>
</body>
</html>