Tema: Menús CSS
Ver Mensaje Individual
  #6 (permalink)  
Antiguo 27/05/2010, 05:28
bibianaalvarez
 
Fecha de Ingreso: mayo-2010
Mensajes: 30
Antigüedad: 13 años, 11 meses
Puntos: 0
Respuesta: Menús CSS

Muchas gracias tienes razon.he encontrado la respuesta, por si alguien lo busca funciona colocando un estilo en html 4 o en xhtm

El 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>Untitled Document</title>
<style type="text/css">
<!--
body, html {
height: 100%;
margin:0;
padding:0;
}
-->
</style>
</head>

<body>
<table width="100%" height="100%" border="4" cellpadding="0" cellspacing="1">
<tr>
<td align="center" valign="middle"><table width="800" height="300" border="1" bgcolor="#990033">
<tr>
<td>&nbsp;</td>
</tr>
</table></td>
</tr>
</table>
</body>
</html>