Estou aprendendo Float e ao tentar manter meu footer embaixo na tela o texto sumiu e não consigo descobrir o motivo.
Meu HTML está assim:
<!DOCTYPE html>
<html>
<head>
<title>Biografia - João da Silva</title>
<meta charset="utf-8">
<link rel="icon" href="favicon.png">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="site.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Crimson+Text:400,400italic,600">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans+Condensed:700">
</head>
<body>
<main>
<!-- ... -->
</main>
<img src="eu.jpg" alt="Foto de João da Silva">
<aside class="navegacao-site">
<h1>João da Silva</h1>
<nav>
<!-- ... -->
</ul>
</aside>
<footer class="rodape-pagina">
© João da silva 2014
</footer>
</body>
</html>
Aqui eu criei uma class para o footer, a "rodape-pagina" e o meu CSS está assim com o footer lá embaixo:
body {
font-family: "Crimson Text", "Times New Romam", serif;
background-color: #F2FFFC;
font-size: 120%
line-height: 1.5;
}
main {
width: 80%;
float: left;
}
h1, h2 {
font-family: "Open Sans Condensed", "Arial", sans-serif;
}
.titulo-principal {
text-transform: uppercase;
text-align: center;
background-color: #851944;
color: #FFF;
padding: 25px;
border-bottom: 10px solid black;
font-size: 60px;
}
p {
text-align: justify;
margin: 20px 0;
}
.citacao-bio-fiat {
background-color: #D9E5E3;
border: 10px solid #C2CCCA;
width: 250px;
box-sizing:border-box;
margin: 20px 40px;
float: right;
}
.citacao-bio-petrobras {
background-color: #D9E5E3;
border: 10px solid #C2CCCA;
width: 250px;
box-sizing:border-box;
margin: 20px 40px;
float: left;
}
h2 {
clear: both;
}
main a {
color: #851944;
}
img, .navegacao-site {
width: 20%;
float: right;
}
.navegacao-site {
text-align: center;
background-color: #3C1D3D;
color: #F2FFFC;
clear: right;
box-sizing: border-box;
}
.navegacao-site a {
color: inherit;
font-family: "Open Sans Condensed", sans-serif;
text-transform: lowercase;
}
.citacao-bio, .navegacao-site, .rodape-pagina {
padding: 20px;
}
.container {
width: 720px;
margin: auto;
padding: 30px 0;
}
.navegacao-site h1 {
font-size: 30px;
margin-bottom: 25px;
}
strong {
font-weight: bold;
}
em {
font-style: italic;
}
.subtitulo-texto {
font-size: 30px;
}
.icones-redes-sociais li {
display: inline-block;
}
.icones-redes-sociais a {
width: 40px;
height: 40px;
display: block;
text-indent: -99999px;
}
.github {
background-image: url(github.png);
}
.twitter {
background-image: url(twitter.png);
}
.linkedin {
background-image: url(linkedin.png);
}
.artigo {
padding-bottom: 30px;
border-bottom: 1px solid #ccc;
margin-bottom: 20px;
}
.leia-mais {
padding: 8px;
margin: 16px;
display: block;
font-size: 24px;
text-align: center;
background-color: #E6E7E8;
}
.rodape-pagina {
background-color: #000;
color: #F2FFC;
clear: both;
}
No meu navegador só aparece a barra do footer preta, mas sem o texto e não sei por que isto ocorre.