Jump to content
  • 0

Не получается прижать footer к низу страницы


Artur Boss
 Share

Question

Друзья, пробовал несколько методов, найденных в сети, выбрал тот, при котором к footer-у применяется абсолютное позиционирование, а страница body и html растягиваются до 100%...

Долго мучился, так и не разобрался, вот полный код:


<!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 charset="utf-8">

<style type="text/css">
html { height: 100% }
* html body { height: 100% }

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

#header {
float:left;
width:100%;
min-width:1000px;
}

#wrapper {
width:100%;
min-width:1000px;
height:100%;
min-height:100%;
overflow: hidden;
position: relative;
}

#container {
width:1000px;
min-width:900px;
height:100%;
min-height:100%;
margin:0 auto;
overflow: hidden;
position: relative;
}

#footer {
float:left;
width:100%;
height:80px;
margin-top: 50px;
min-width:1000px;
position: absolute;
}
</style>
</head>

<body>

<div id="header">шапка</div>

<div id="wrapper">
<div id="container">
контент
</div>
</div>

<div id="footer">подвал</div>

</body>
</html>

Помогите кто может решить такую мелочь...

Проблему решил, добавив height:100% к body, но вылезла новая...

footer уходит вниз за пределы экрана и появляется полоса вертикальной прокрутки (( как это решить?

Edited by Artur Boss
Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

footer уходит вниз за пределы экрана и появляется полоса вертикальной прокрутки (( как это решить?

я так понимаю это связано с wrapper и container, но если убрать у них значения height 100%, то футер опять же лезит наверх

Edited by Artur Boss
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