Знающие люди, подскажите.
Сам бекендщик, в верстке не силен)
Как прижать футер к подвалу, сохранив внутренний фон не разорванным?
background для body задан черным, а wrapper - белым.
То есть схема такая же:
<div class="wrapper">
<p>Your website content here.</p>
<div class="push"></div>
</div>
<div class="footer">
<p>Copyright (c) 2008</p>
</div>
* {
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 */
}
Но, фон у wrapper'a другой.
Если я делаю по данному способу - появляется внутри черная полоса (разрыв).
Верстка адаптивная.
Заранее благодарю