El problema es el siguiente:
Tengo una tabla con los bordes con una imagen de fondo aplicada mediante un css; y en las esquinas una imagen pequeña, aplicada directamente desde la tabla.
Las imágenes a lo vertical, se ajustan perfectamente, pero en la horizontal se queda un espacio que es el fondo.
Si alguien puede solucionarlo le estaría muy agradecido.
La página la pueden visitar aquí: http://luiggy.es/prueba.html
Si quieren el código, aqui está:
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>..:: La web de Luiggy ::..</title> <style type="text/css"> <!-- body { background-color: #000000; } /* ESTILO BORDE TABLA */ /* ..:: Lados ::.. */ /* top */ .top{ background-image:url(imagenes/tabla/top.gif); background-repeat: repeat-x; background-position: center; } /* down */ .down{ background-image:url(imagenes/tabla/down.gif); background-repeat: repeat-x; background-position: center; } /* Imagen lateral izq */ .lateral_izq{ background-image:url(imagenes/tabla/left.gif); background-repeat:repeat-y; background-position:center; } /* Imagen lateral der */ .lateral_der{ background-image:url(imagenes/tabla/right.gif); background-repeat:repeat-y; background-position:center; } /* Este es de texto */ .texto{ background-color:#ffffff; } --> </style></head> <body> <table width="690" height="138" border="none" align="center" cellspacing="0" cellpadding="0"> <tr> <td width="12" height="18"><img src="imagenes/tabla/top-left.gif" width="12" height="12" /></td> <td width="666" class="top"> </td> <td width="12"><img src="imagenes/tabla/top-right.gif" width="12" height="12" /></td> </tr> <tr> <td height="102" class="lateral_izq"> </td> <td class="texto"> </td> <td class="lateral_der"> </td> </tr> <tr> <td><img src="imagenes/tabla/down-left.gif" width="12" height="12" /></td> <td class="down"> </td> <td><img src="imagenes/tabla/down-right.gif" width="12" height="12" /></td> </tr> </table> </body> </html>
Saludos!
Espero sus respuestas