0
My João da Silva page, in the Section "Blog" has a white band at the bottom that I can not take out at all. They follow the relevant parts of the script and a print:
Print:
html:
<section class="secao-inicio blog">
<h1>Blog</h1>
<p class="links">Últimos posts</p>
<ol>
<li class="link-blog">
<a class="post-destaque" href="blog.html">O essencial de design responsivo</a>
<p class="inicio-post">Design responsivo tem ganho cada vez mais atenção como técnica de desenvolvimento de páginas web para dispositivos móveis. Mas como começar?</p>
</li>
<li class="link-blog">
<a class="post-destaque" href="blog.html">Por que fazer páginas acessíveis?</a>
<p class="inicio-post">Paginas acessiveis te darao mais acessos e consequentemente mais divulgaçao e dinheiro.</p>
</li>
<li class="link-blog">
<a class="post-destaque" href="blog.html">JavaScript não obstrusivo</a>
<p class="inicio-post">Javascript e a principal linguagem de programaçao da web, que precisa ser bem escrita para nao tornar seu conteudo pesado e a pagina lenta.</p>
</li>
</ol>
<a class="botao-index" href="blog.html">Veja mais</a>
</section>
css:
.blog {
background-color: #999;
color: #FFF;
position: relative;
}
.blog li a {
color: #FCF;
margin-left: 2rem;
}
.blog li {
width: 30%;
margin-bottom: 1rem;
}
.blog .link-blog a:hover {
padding: .5rem .5rem .5rem;
color: black;
}
.secao-inicio h1 {
padding-top: 2rem;
text-transform: uppercase;
font-size: 3rem;
color: white;
margin: 0rem 0rem 0rem 2rem;
}
.secao-inicio ul {
margin: 0 2rem;
}
.secao-inicio h2 {
text-shadow: 3px 3px #000;
font-size: 3rem;
text-transform: uppercase;
margin-bottom: .5rem;
}
I believe the problem is in the class . blog, because in a previous Section that uses the class . secao-start is all ok, but I left it there because of my very low experience. I hope I have been able to explain the problem.
Only with this CSS can not check. Put the rest too, especially the class
.botao-index
.– Sam
Thanks for the quick help sam. The problem was in the same botao-index class. . button-index { font-size: 1.25em; background-color: rgb(133, 25, 68); color: rgb(255, 255, 255); padding: . 5em; border: . 2em Solid rgb(0, 0, 0); width: 40ch; margin: 2em auto; display: block; text-align: center; index automatically. I had to do it manually in the margin property. Some segestão better?
– Salatiel Aizza
No need to change the display, just change the bottom margin as I put in the answer.
– Sam