Jump to content
  • 0

Растягивание блока


DRiVER
 Share

Question

Требуется растянуть блок notes на всю высоту блока blog

Перепробовал всё что смог, но проблему так решить и не удалось (

YVTIod4vqG.png

<html>
<head>
<style type="text/css">
div.container {
width:1000px;
margin:0 auto;
}
div.block_content {
background:#030;
}
div.blog {
width:968px;
margin:0 15px;
overflow:hidden;
background-color:#0C9;
}
div.notes {
width:740px;
float:left;
background-color:#6CF;
}
div.post {
background-color:#FC9;
}
div.sidebar {
width:211px;
float:right;
background-color:#99C;
}
</style>
</head>

<body>
<div class="container">
<div class="block_content">
<div class="blog">
<div class="notes">
<div class="post">
<p>post</p>
<p>post</p>
<p>post</p>
<p>post</p>
<p>post</p>
</div>
<p>notes</p>
</div>
<div class="sidebar">
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
</div>
</div>
</div>
</div>
</body>
</html>

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Естественно просто указав высоту в 100% вы ничего не добъетесь, поскольку 100% от автоматической высоты родителя - не вычисляемо. Либо надо указывать высоту родителя, либо использовать абсолютное позиционирование:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<style type="text/css">
div.container {
width:1000px;
margin:0 auto;
}
div.block_content {
background:#030;
}
div.blog {
width:968px;
margin:0 15px;
overflow:hidden;
background-color:#0C9;
position: relative;
}
div.notes {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width:740px;
*height: expression(parentNode.offsetHeight+'px');
background-color:#6CF;
}
div.post {
background-color:#FC9;
}
div.sidebar {
width:211px;
float:right;
background-color:#99C;
}
</style>
</head>

<body>
<div class="container">
<div class="block_content">
<div class="blog">
<div class="notes">
<div class="post">
<p>post</p>
<p>post</p>
<p>post</p>
<p>post</p>
<p>post</p>
</div>
<p>notes</p>
</div>
<div class="sidebar">
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
<p>sidebar</p>
</div>
</div>
</div>
</div>
</body>
</html>

тут для ИЕ6 приходится задавать экспрешн, что не очень гуд... но ИЕ6 и ранние не понимают одновременного указания координат противоположных сторон.

И доктайп обязательно указывайте, а то броузеру не понятно в каких стандартах рендерить.

Link to comment
Share on other sites

  • 0

Но, тут уже будут другие проблемы: содержимое notes не будет растягивать родителя. Вобщем, если нужна визуализация растягивания блока по высоте, то решайте это фоном родителя или бордерами, а если что-то более сложное, то делайте таблицами.

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