Jump to content
  • 0

Картинка к низу страницы


Enita
 Share

Question

Всем привет! =)

Наткнулась на такой вопрос.

Необходимо фоновую картинку прижать к низу страницы и при этом футер прижать тоже.

При назначении фоновой картинки body или какому-нибудь контейнеру картинка прижимается к низу окна просмотра.

Может кто сможет что подсказать? =)

Заранее спасибо!

Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

выложите рисунок, как должно быть и код, как вы делали

Сейчас это скорее гипотетический вопрос. Но вот что-то вроде этого получается... А должна быть в самом низу картинка.

http://hitochka.narod2.ru/exemple/index.html

Link to comment
Share on other sites

  • 0

ну например так можно решить задачу:

<!DOCTYPE HTML>
<html>
<head>
<title></title>
<style>
* {
margin: 0;
padding: 0;
}

html {
height: 100%;
}

body {
font: 12px/18px Arial, Tahoma, Verdana, sans-serif;
width: 100%;
height: 100%;
}

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

#header {
height: 150px;
background: #FFE680;
}

#content {
padding: 0 0 100px;
}

#footer {
width: 100%;
height: 100px;
background:url(images/fon2.jpg) repeat-x 100% 100%;
}

.footer-block{
width: 1000px;
margin: -100px auto 0;
height: 100px;
background: #BFF08E;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="header">
<strong>Header:</strong> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Cras tortor. Praesent dictum, libero ut tempus dictum, neque eros elementum mauris, quis mollis arcu velit ac diam. Etiam neque. Quisque nec turpis. Aliquam arcu nulla, dictum et, lacinia a, mollis in, ante. Sed eu felis in elit tempor venenatis. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Ut ultricies porttitor purus. Proin non tellus at ligula fringilla tristique. Fusce vehicula quam. Curabitur vel tortor vitae pede imperdiet ultrices. Sed tortor.
</div><!-- #header-->

<div id="content">
<strong>Content:</strong> Sed placerat accumsan ligula. Aliquam felis magna, congue quis, tempus eu, aliquam vitae, ante. Cras neque justo, ultrices at, rhoncus a, facilisis eget, nisl. Quisque vitae pede. Nam et augue. Sed a elit. Ut vel massa. Suspendisse nibh pede, ultrices vitae, ultrices nec, mollis non, nibh. In sit amet pede quis leo vulputate hendrerit. Cras laoreet leo et justo auctor condimentum. Integer id enim. Suspendisse egestas, dui ac egestas mollis, libero orci hendrerit lacus, et malesuada lorem neque ac libero. Morbi tempor pulvinar pede. Donec vel elit.

</div><!-- #content-->
</div><!-- #wrapper -->

<div id="footer">
<div class="footer-block">
<strong>Footer:</strong> Mus elit Morbi mus enim lacus at quis Nam eget morbi. Et semper urna urna non at cursus dolor vestibulum neque enim. Tellus interdum at laoreet laoreet lacinia lacinia sed Quisque justo quis. Hendrerit scelerisque lorem elit orci tempor tincidunt enim Phasellus dignissim tincidunt. Nunc vel et Sed nisl Vestibulum odio montes Aliquam volutpat pellentesque. Ut pede sagittis et quis nunc gravida porttitor ligula.
</div>
</div><!-- #footer -->

</body>

</html>

Link to comment
Share on other sites

  • 0

ну например так можно решить задачу:

Так можно, если фрагмент не высокий... А мне надо высоту фона в районе 300px, а футера 100px...

слегка громоздкое решение, но работает:

#footer {
position:relative;
width: 100%;
height: 300px;
background:url(images/fon2.jpg) repeat-x 100% 100%;
}

.footer-block{
width:100%;
position:absolute;
bottom:0px;

}

.footer-text{
width: 1000px;
margin:0 auto;
height: 100px;
background: #BFF08E;
}
<div id="footer">
<div class="footer-block">
<div class="footer-text"><strong>Footer:</strong> Mus elit Morbi mus enim lacus at quis Nam eget morbi. Et semper urna urna non at cursus dolor vestibulum neque enim. Tellus interdum at laoreet laoreet lacinia lacinia sed Quisque justo quis. Hendrerit scelerisque lorem elit orci tempor tincidunt enim Phasellus dignissim tincidunt. Nunc vel et Sed nisl Vestibulum odio montes Aliquam volutpat pellentesque. Ut pede sagittis et quis nunc gravida porttitor ligula.
</div>
</div>
</div>

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