Jump to content
  • 0

Растяжка подвалапо вертикали


Panic
 Share

Question

Добрый вечер, господа.

Вопрос такой - есть блок фиксированного с контентом с автоматическим отступом, под ним растянутый на весь экран подвал.

В блок вставляется таблица, появляется горизонтальная прокрутка, однако подвал остается фиксированным ровно на 100% размера окна браузера.

Та же проблема на всех страницах, если окно браузера уменьшить менее чем на 960px - появляется прокрутка, содержимое footer'a видно, но вот фона в области за полосой прокрутки уже как не бывало.

Что нужно исправить, чтобы он растягивался на всю страницу?


<html>
<body>
<div class="container">
</div>
<footer>
</footer>
</body>
</html>


html
{
min-width: 100%;
min-height: 100%;
}
body
{
width: 100%;
height: 100%;
}
div.container
{
width: 960px;
margin: 0 auto;
margin-top: 20px;
}
footer
{
width: 100%;
display: inline-block;
background-color: #7D7D7D;
padding-bottom: 20px;
margin-top: 20px;
position: relative;
}

915d2b7b610f.png

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Я сам новичок, но если я правильно понял, то что бы реализовать то, что вы хотите надо либо делать это таблицой, либо футер, левый контент и правый контент должны быть положены в один общий див, этот див будет расширяться за счет синего дива, за счет расширения общего дива будет расширяться и футер. Параметры для этого я думаю вы сами нпишите.

Link to comment
Share on other sites

  • 0

попробовал, но толку ноль. Может более точная структура поможет

<html>
<body>
<div class="container"> <- 960px
<header></header> <-100%
<div class="content"> <-100%
<nav></nav> <-260px
<article><table width="2000px"></table></article> <-700px, внутри таблица гораздо больше размера самого блока, н-р 2000px
</div>
</div>
<footer>
</footer>
</body>
</html>

Edited by Panic
Link to comment
Share on other sites

  • 0

попробовал, но толку ноль.

:o:o:o

http://cssdesk.com/QY3gd

Меняем значение .container{width: 1200px;} и футер тянится за ним.


<html>
<head>
<style>
html
{
min-width: 100%;
min-height: 100%;

}
body
{
width: 100%;
height: 100%;
margin:0;
padding:0;
}
.container
{
margin-top:600px;
background:orange;
width: 800px;
height:150px;


}
.wrap {background:yellow;
height: 1200px;
margin-top:1px;}
footer
{

position: relative;
left: 0; bottom: 0;
height:200px;
padding: 10px;
background: #39b54a;
color: #fff;

}
table {
border-collapse: collapse;
border-spacing: 0;
}
</style>
</head>
<body>
<table>
<tr><td>
<div class="wrap">
dfsf
<div class="container">table
</div>
</div>
</td></tr>
<tr><td>
<footer>footer
</footer></td>
</tr>
</table>
</body>
</html>

:boast:Какой же я мАладец!

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