Ver Mensaje Individual
  #5 (permalink)  
Antiguo 01/06/2010, 19:14
Avatar de zutzu
zutzu
 
Fecha de Ingreso: mayo-2010
Ubicación: Lima
Mensajes: 44
Antigüedad: 13 años, 10 meses
Puntos: 2
Respuesta: borde de tabla demasiado ancho

mm no termino de entender, si solo quieres un borde exterior a tu tabla, o que cada celda tenga borde?
en todo caso puedes jugar con la propiedad "border"

Código HTML:
<!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=utf-8" />
<title>Documento</title>
<style type="text/css">
.tabla2 {border-top:1px solid black;border-left:1px solid black;}
.tabla2 td{border-right:1px solid black;border-bottom:1px solid black;}
</style>
</head>

<body>
<table class="tabla2" width="100%" cellspacing="0">
         <tr>
          <td>&nbsp;</td>
          <td>&nbsp;</td>
          </tr>
          <tr>
         <td>&nbsp;</td>
        <td>&nbsp;</td>
     </tr>          
</table>
</body>
</html> 
ahí no afectaría a tu imagen.
hubiera sido mejor que dejes tu html.