Antes de nada decir que ya he buscado por las FAQs CSS y no he encontrada nada al igual que por la Web.
Estoy en construcción de mi primera Web programando el CSS yo solo, antes utilizaba plantillas ya creadas.
Mi problema es que al incluir texto o cualquier otra contenido en un div (el div es contenido), este no se agranda, es decir, cuando el texto (contenido) sobrepasa el div dicho div mantiene su height y el texto sigue fuera.
¿Cómo podría solucionarlo?
Código HTML:
Ver original
Código CSS:
Ver original
#page { position: absolute; height: 90%; width: 60%; top: 5%; left: 20%; right: 20%; bottom: 5%; } #cabecera { position: absolute; height: 25%; width: 100%; top: 0%; left: 0%; right: 0%; } #contenedor { position: absolute; height: 65%; width: 100%; top: 25%; bottom: 10%; left: 0%; right: 0%; } #contenido { position: absolute; height: 100%; width: 80%; top: 0%; bottom: 0%; left: 0%; right: 0%; } #colgadoDerecha { position: absolute; height: 100%; width: 20%; top: 0%; bottom: 0%; left: 80%; right: 20%; } #footer { position: absolute; height: 10%; width: 100%; bottom: 0%; left: 0%; right: 0%; background-color: green; }