Ver Mensaje Individual
  #7 (permalink)  
Antiguo 16/12/2005, 16:50
Axo
 
Fecha de Ingreso: abril-2003
Ubicación: Virtual
Mensajes: 953
Antigüedad: 21 años
Puntos: 7
Cita:
Iniciado por MindPaniC
seguro que tendra que empezar a leer sobre css para saber como funciona y aprenderlo

saludos
Eso es lo que pregunto... para aprender como se hace... a ver con CSS ahora pero viene a ser igual, sigue dejando un gran espacio debajo que descuadra la tabla:

Código HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin t&iacute;tulo</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css">
<!--
.encabezado {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: normal;
	text-align: center;
	vertical-align: middle;
	word-spacing: normal;
	white-space: normal;
}
-->
</style>
</head>
<body>
  <table width="500"  border="1" align="center" cellpadding="1" cellspacing="0">
    <tr>
      <td><div align="center"> 
        <h1 class="encabezado">ESTO NO QUIERO</h1>
      </div></td>
    </tr>
    <tr>
      <td>texto textotexto texto texto </td>
    </tr>
  </table>
  <br>
  <table width="500"  border="1" align="center" cellpadding="1" cellspacing="0">
    <tr>
      <td><div align="center"><strong> ESTO SI QUIERO</strong></div></td>
    </tr>
    <tr>
      <td>texto textotexto texto texto </td>
    </tr>
  </table>
</body>
</html>