<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* CSS de Un Mirlo en la nieve para Layout 100% de altura */
/*--------------------------------------------------------*/
/* ESTRUCTURA */

html,body {
  margin:0;
  padding:0;
  height:100%; /* needed for container min-height */
  background:#fff;
  font-family:Arial,Helv,sans-serif;;
  font-size: 0.9em;
  color:#666;
}

#contenedor {
  position:relative;
  margin:0 auto;
  width:750px;         /* ANCHO DE COLUMNA PRINCIPAL */
  height:auto !important;
  /* height:100%; */
  /* border-left: solid 1px #000;
  border-right: solid 1px #000; */
  /* min-height:100%; */
}

#cabecera {
  background:#f0f0f0;
  width: 100%;
  height:100px;    /* ALTURA CABECERA */
}

#cuerpo {
  background:#f0f0f0;
  overflow: auto;
/*  height: 100%; */
}


#menu {
  background:#f0f0f0;
  width: 200px;
  float: left;   /* LOCALIZACIÓN DEL MENÚ */
}


#contenido {
  background:#f0f0f0;
  }

#pie {
  /* position:absolute; */
  width:100%;
  height:135px;    /* ALTURA PIE */
  bottom:0;
  background:#ddd;
}</pre></body></html>