1
I’m creating a site with responsive layout,when the site enters the mobile solution leaves an unwanted space below
@media(min-width:176px) {
div#rodape{
width: 100%;
height: 70px;
padding-top: 10px;
text-align:center;
}
}
@media(min-width:320px) {
div#rodape{
width: 100%;
height: 230px;
text-align:center;
}
}
/NOTE. this site is not mine this is just an example/
The CSS in your question is not enough to cause what appears in the screenshot. The space will have to come from some fault in the Markup or a CSS definition other than the ones in your question. You should update the question with relevant information for the problem analysis.
– Zuul