Jump to content
  • 0

Проблема с растягиванием сайдбара и контента к футеру


Nerf74
 Share

Question

Здравствуйте! Такая проблема при верстке слоями (блоками): хочу сделать страницу с хедером, двумя колонками (левый сайдбар и контент) и футером. Сделал чтобы футер был прижат к низу страницы при помощи вставки пустого блока в конце контента и притягиванием выше (на размер этого пустого блока) футера. С футером все хорошо, сидит поживает себе спокойно снизу страницы, НО сайдбар и контент растягиваться сами до футера никак не хотят (честно, перепробовал уже кучу всяких примеров из гугла, скачивал готовые шаблоны - ничего не помогает :( )

fck3.jpg

В теории все просто: необходимо сделать так, чтобы sidebar и content занимали все доступное место в блоке conteiner2.. есть мысля, что через позиционирование делать, но как?

fck2c.jpg

код html файла:

<!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=UTF-8" />
<meta name="language" content="ru" />
<meta name="description" content="блаблабла" />
<meta name="keywords" content="бла, бла, бла" />
<title>test</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container1">
<div id="header">
HEADER
</div>
<div id="container2">
<div id="sidebar">
SIDEBAR
</div>
<div id="content">
CONTENT
</div>
</div>
<div class="clearfloat"></div>
<div id="emptyspace"></div>
</div>
<div id="footer">
FOOTER
</div>
</body>
</html>

код внешнего файла стилей (style.css):

* { 
border: 0;
margin: 0;
padding: 0;
}

html {
height: 100%;
width: 100%;
background-color: white;
text-align: center;
}

body {
height: 100%;
width: 960px;
margin: 0 auto;
}

#container1 {
height:auto !important;
height:100%;
min-height:100%;
min-width:960px;
margin: 0 auto;
}

#header {
width: 960px;
height: 120px;
background-color: brown;
margin: 0 auto;
}

#sidebar {
float: left;
background-color: red;
width: 200px;
margin: 10px auto 0;
}

#content {
float: right;
background-color: yellow;
width: 740px;
margin: 10px auto 0;
}

#emptyspace {
height: 130px;
}

.clearfloat {
clear: both;
}

#footer {
background-color: blue;
width: 960px;
height: 120px;
margin: -120px auto 0;
}

Подскажите, пожалуйста, как решить проблему? Заранее большое спасибо!

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

У меня тоже это никак не получалось.

И с вставкой данного кода тоже...

Как это вообще влияет на высоту, за счет чего сайдбар и контент растянутся?

Вот тут пишут, что этого в принципе и не должно быть естественный путем

http://htmlbook.ru/samlayout/tipovye-makety/kolonki-odinakovoi-vysoty

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