Posteriormente a consultar expertos en la materia, programadores de deferentes ramas y maestros hemos dado con la respuesta al dilema y la plasmamos en esta publicación.
Ejemplo 1: ¿por qué mi pie de página no está en el html inferior?
#footerposition:fixed;left:0px;bottom:0px;height:30px;width:100%;background:#999;
//name footer id="footer"
Ejemplo 2: cómo llevar mi pie de página al final de la página usando css
#page-containerposition: relative;min-height:100vh;#content-wrappadding-bottom:2.5rem;/* Footer height */#footerposition: absolute;bottom:0;width:100%;height:2.5rem;/* Footer height */
Ejemplo 3: cómo mantener el pie de página en la parte inferior de la página css
.footerclassbackground-color:#eeeeee;position: fixed;top: auto;bottom:0;width:100%;display: inline-block;
Ejemplo 4: mantener el pie de página en la parte inferior de la página
#footerposition: relative;margin-top:-180px;/* negative value of footer height */height:180px;clear: both;/*Custom styling*//* Opera Fix thanks to Maleika (Kohoutec) */body:beforecontent:"";height:100%;float: left;width:0;margin-top:-32767px;/* thank you Erik J - negate effect of float*/
Al final de la web puedes encontrar las referencias de otros usuarios, tú incluso tienes la habilidad dejar el tuyo si lo crees conveniente.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)