![]() |
|
||||||||||
|
|||||||
|
|
« Предыдущая тема | Следующая тема » |
| Опции темы | Опции просмотра |
|
![]() |
![]() |
|
|
|
|||||
|
Регистрация: Feb 2009
Сообщений: 29
|
Ув. коллеги, подскажите, как сверстать такой макет, только блоками (div)?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<meta name="robots" content="index, follow" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<title>DIV wanted</title>
<style>
html, body {
margin:0;
padding:0;
height:100%;
min-height: 500px;
min-width: 1000px;
}
table#all {
padding:0;
margin: 0;
height:100%;
width: 100%;
text-align: center;
font-size: 20px;
}
td#head {
height: 100px;
background-color: red;
padding: 0 10%;
}
#head div, #footer div {
height: 100%;
}
td#main {
background-color: blue;
height: 100%;
padding: 0 10%;
}
td#footer {
height: 100px;
background-color: green;
padding: 0 10%;
}
.middle {
background-color: yellow;
height: 100%;
}
</style>
</head>
<body>
<table id="all" cellpadding="0" cellspacing="0">
<tr>
<td id="head"><div>Фиксированная высота в шапке</div></td>
</tr>
<tr>
<td valign="center" id="main">
<table width="100%" height="100%" cellpadding="0" cellspacing="0"><tr>
<td valign="center" class="middle">100% высота и ширина</td>
</tr></table>
</td>
</tr>
<tr>
<td id="footer"><div>Фиксированная высота в футере</div></td>
</tr>
</table>
</body>
</html>
|
|
|||||
|
Регистрация: Aug 2008
Сообщений: 258
|
можно только без 100% высоты серединного блока.
|
|
|||||
|
Регистрация: Apr 2010
Сообщений: 81
|
Вот, быстро попытался навоять
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style type="text/css">
html { height:100%;}
body { height:100%;}
* { margin:0px; padding:0px;}
.div1 { background:#F90;height:100%;position:relative;}
.div2 { background:#C00; height:100px;position:absolute; width:100%; left:0px; top:0px;}
.div3 { background:blue; height:100px; position:absolute; bottom:0px; left:0; width:100%;}
.div4 { background:#ccc;height:100%; width:80%; margin:0 10%;}
</style>
</head>
<body>
<div class="div1">
<div class="div2">test</div>
<div class="div4"><div style="height:100px;"></div>
test
</div>
<div class="div3">test</div>
</div>
</div>
</body>
</html>
|
|
|||||
|
Регистрация: Feb 2009
Сообщений: 29
|
Цитата:
![]() |
![]() |
![]() |
Часовой пояс GMT +4, время: 14:03. |
|
|
« Предыдущая тема | Следующая тема » |
| Опции темы | |
| Опции просмотра | |
|
|