Cuando uso HTML sin DOCTYPE
, mi página HTML Height=100%
está funcionando."Altura = 100%" no funciona en html cuando se usa <!DOCTYPE>?
Pero cuando se utiliza DOCTYPE
, la altura no está funcionando correctamente ...
<!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" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 1</title>
</head>
<body>
<table cellpadding="0" cellspacing="0" width="11" height ="100%">
<tr>
<td height="100%" bgcolor="#008000"> </td>
</tr>
</table>
</body>
¿Cómo resolver este problema?
Aquí hay una explicación simple y clara de la cuestión DOCTYPE: http://stackoverflow.com/a/32215263/3597276 –