Ver Mensaje Individual
  #1 (permalink)  
Antiguo 23/02/2015, 14:14
Avatar de matiasagustinn
matiasagustinn
 
Fecha de Ingreso: febrero-2015
Mensajes: 2
Antigüedad: 9 años, 2 meses
Puntos: 0
Pregunta No puedo quitar espacio inferior de una tabla

¡Hola a todos!
He buscado bastante antes de abrir el tema, y aunque hay miles que tengan que ver con los espacios, márgenes, bordes de las tablas, no consigo solucionar mi problema.

El código HTML es el siguiente (uso Dreamweaver, si vale aclarar)
Cita:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Documento sin título</title>
<style type="text/css">
body {
background-color: #067293;
}
</style>
</head>

<body>

<style>
.tablem {
box-shadow:0px 1px 50px
}
</style>



<table width="950" border="0" align="center" cellpadding="0" cellspacing="0" class="tablem">
<tbody>
<tr>
<td width="950"><img src="img/encabezado.png" width="950" height="120" alt=""/></td>
</tr>
<tr>
<td><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="5%" rowspan="3" bgcolor="#000000">&nbsp;</td>
<td>&nbsp;</td>
<td width="5%" rowspan="3" bgcolor="#000000">&nbsp;</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td bgcolor="#000000">&nbsp;</td>
</tr>
</tbody>
</table></td>
</tr>
</tbody>
</table>
</body>
</html>
Quiero quitar ese delgado espacio azul que se encuentra abajo de la imagen, arriba de los bordes negros, no sé si me explico.
¿Alguien me puede dar una mano? ¡Gracias!