Jump to content
  • 0

Позиционирование footer absolute


tarkinsky
 Share

Question

Помогите плиз уже два дня мучаюсь.

Есть код в котором многое прописано с помощью position: absolute;

Главное что так прописан и footer. вот кусок кода:

HTML:


<div id="footer_carrier">
<div id="footer">
<div id="footer1">
<div id="footer_text">
Праздничные и фасадные работы для Вас и Вашей семьи!
</div>
</div>
</div>
</div>

CSS:


#footer_carrier{
background: url(pics/footer_border.gif) top left repeat-x;
height: 50px;
width: 100%;
position: absolute;
top: 100%;
}

#footer{
background: #ebebeb;
height: 65px;
margin-top: 3px;
font-family: 'Tahoma';
font-size: 11pt;
padding-left: 10px;
}
#footer1{
background: url(pics/hearts.gif) top right no-repeat;
height: 65px;
margin: 0px;
}
#footer_text{
padding-left: 5px;
padding-top: 5px;
}

Обратите внимание на: footer_carrier - top: 100%; position: absolute; При разрешении 1024 на 768 все отлично и футер находится в самом низу. А если выставить 1280 на 1024 то видно следующее:

Скрин

(футер не прижат снизу ... там идет белая полоса).

Подскажите решение? или хотя бы намекните как можно попробовать прижать футер к низу именно в моей ситуации?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Все кроме футера обвернуть в #wrapper

Ваш футер вставить в #block-footer

HTML:


<div id="wrapper"></div>
<div id="block-footer"></div>

CSS:


body {
height: 100%;
}
#wrapper {
min-height: 100%;
height: auto !important;
height: 100%;
}
#block-footer {
margin: -100px auto 0;
height: 100px;
position: relative;
}

убрать footer_carrier - top: 100%;

Edited by Phys1cx
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