Jump to content
  • 0

100% по высоте в блочной верстке


Darkside
 Share

Question

Доброго дня!

Есть раскладка на флоатах

<!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=windows-1251" />
<title></title>
<link href="index-block.css" rel="stylesheet" type="text/css" />
</head>

<body>
<div id="container">
<div id="leftcol">MENU
</div>
<div id="rightcol">
<div id="head">
HEAD </div>
<div id="content">
CONTENT </div>
</div>
<div id="footer">FOOTER</div>
</div>
</body>
</html>

стили

html,body {
margin:0;
padding:0;
}

html {
height:100%;
}

body {
padding:0;
margin:0 auto;
width:80%;
min-height:100%;
position:relative;
}

* html body {
height:100%;
}
#container {
width:100%;
height:100%;
background:#FFFFFF;
}
#leftcol {
float: left;
width: 200px;
background: #008000;
}

#rightcol {
margin-left: 200px;
background-color: #00CCFF;
}

#head {
float:left;
width:100%;
height:200px;
background:#FF0000;
}

#content {
padding-bottom:82px; /* = 80+1+1 */
background:#999999;
}

#footer {
height:80px;
background: #333;
clear: both;
position:absolute;
bottom:0;
height:40px;
width:100%;
padding:1px 0;
}

Подскажите, как можно сделать, чтобы leftcol и content занимали все свободное пространство по высоте.

Еще хочется узнать мнение по поводу правильности такой верстки (особенно по поводу стилей для вложенных дивов head и content) для вот такого макета:

layout.jpg

Link to comment
Share on other sites

7 answers to this question

Recommended Posts

  • 0

дочитался до такого:

#leftcol {

position:absolute;

float: left;

width: 200px;

bottom:0;

height:100%;

min-height:100%;

background: #008000;

}

* html #leftcol {

height:100%;

}

Opera и FF тянут, а вот IE вообще перестал отображать этот слой. может ткнете, где об этом на сайте написано. в статье про высоту блочных элементов решения не нашел

Link to comment
Share on other sites

  • 0

если так написать:

#container {

width:100%;

min-height:100%;

background-color: #00CCFF;

}

* html #container {

height:100%;

}

#leftcol {

float: left;

width: 200px;

min-height: 100%;

background: #008000;

}

* html #leftcol {

height:100%;

}

то ие показывает, а FF и Opera -- нет

хм... спят уже все что ли

Link to comment
Share on other sites

  • 0

Darkside, возможность 100%-й растягиваемости каких-либо элементов по высоте окна была в последний раз лишь в стандарте HTML 3.2. Позднее она была убрана... Так что если вы хотите следовать стандартам, то придется обойтись без этого; если же вам все равно - то флаг вам в руки... :)

PS: DOCTYPE ведь наверняка не указали? :o

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy