Cómo crear: pie de página fijo

Aprende a crear un pie de página fijo/pegajoso usando CSS.

Prueba por ti mismo

Cómo crear un pie de página fijo

<style>
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}
</style>
<div class="footer">
  <p>Pie de página</p>
</div>

Prueba por ti mismo

Páginas relacionadas

Tutoriales:Posicionamiento CSS