Ver Mensaje Individual
  #6 (permalink)  
Antiguo 23/04/2009, 10:48
Avatar de Mikmoro
Mikmoro
Colaborador
 
Fecha de Ingreso: octubre-2006
Ubicación: K-pax
Mensajes: 7.228
Antigüedad: 17 años, 6 meses
Puntos: 280
Respuesta: Reemplazar tabla por css !!!

No he seguido del todo la conversación, pero puestos a economizar código, si va a aparecer así, este es todavía más económico:
Cita:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es-es" lang="es-es">
<head>
<title></title>
<style type="text/css">
#contenedor{
position:relative;
margin:0px auto;
width:366px;
height:400px;
border:1px solid #000;
}
#contenedor div {
float:left;
width:120px;
border:1px solid #cca;
height:30px;
text-align:center;
}
</style>
</head>
<body>
<div id="contenedor">
<div>code</div>
<div>nombre</div>
<div>apellidos</div>
<div>1</div>
<div>Jorge</div>
<div>González</div>
<div>2</div>
<div>Pepe</div>
<div>Gotera</div>
</div>
</body>

</html>
(listo para coger y probar)