Karn Singh Ответов: 3

код для создания нижнего колонтитула для моего сайта


привет
я хочу сделать изображение как в верхнем, так и в Нижнем колонтитулах моего сайта.Для заголовка я использовал следующий код
body
{
    background-image:url(footer.png);
    background-repeat:no-repeat;
    background-size:contain;
  
   
}

Кроме того, я хочу, чтобы одно и то же изображение прилипло к нижней части браузера, покрывая длину браузера.Как я могу этого достичь?

3 Ответов

Рейтинг:
2

Joezer BH

Это не сложно, но и не так просто.

Первое решение:
Видеть: Ryan Fait - это CSS липкий нижний колонтитул, который просто работает[^]

С сайта:

* {
    margin: 0;
}
html, body {
    height: 100%;
}
.wrapper {
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin: 0 auto -155px; /* the bottom margin is the negative value of the footer's height */
}
.footer, .push {
    height: 155px; /* .push must be the same height as .footer */
}

/*

Sticky Footer by Ryan Fait
http://ryanfait.com/

*/


-------------------------------------------------------------------
Вторая возможность (Липкое решение нижнего колонтитула от Стива Хэтчера)
<div id="wrap">

    <div id="main">

    </div>

</div>

<div id="footer">

</div>



/*
Sticky Footer Solution
by Steve Hatcher
http://stever.ca
http://www.cssstickyfooter.com
*/

* {margin:0;padding:0;}

/* must declare 0 margins on everything, also for main layout components use padding, not
vertical margins (top and bottom) to add spacing, else those margins get added to total height
and your footer gets pushed down a bit more, creating vertical scroll bars in the browser */

html, body {height: 100%;}

#wrap {min-height: 100%;}

#main {overflow:auto;
    padding-bottom: 180px;}  /* must be same height as the footer */

#footer {position: relative;
    margin-top: -180px; /* negative value of footer height */
    height: 180px;
    clear:both;}

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
content:"";
height:100%;
float:left;
width:0;
margin-top:-32767px;/* thank you Erik J - negate effect of float*/
}



/* IMPORTANT

You also need to include this conditional style in the <head> of your HTML file to feed this style to IE 6 and lower and 8 and higher.

<!--[if !IE 7]>
    <style type="text/css">
        #wrap {display:table;height:100%}
    </style>
<![endif]-->

*/



Овации,
Эдо


thatraja

5!

Joezer BH

Спасибо!

Рейтинг:
0

Rakesh Meel

побывать здесь....

http://ryanfait.com/resources/footer-stick-to-bottom-of-page/[^]