Ya use el atributo position y el único valor que me abarca el 100% del alto es fixed pero me quita el scroll horizontal ya que dentro pienso meter un iframe en el cual se cargara paginas que talvez sean mas grandes que el tamaño predeterminado del div.
Alguna solución
La única que encuentro es quitar el DOCTYPE pero no se me hace sabia
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>El menú</title> <style type="text/css"> <!-- #content { height: 100%; width: 400px; background-color: #99CCCC; } --> </style> </head> <body> <div id="content">Menú</div> </body> </html>