Ver Mensaje Individual
  #1 (permalink)  
Antiguo 27/03/2020, 09:23
antuanes
 
Fecha de Ingreso: agosto-2015
Ubicación: Madrid
Mensajes: 7
Antigüedad: 8 años, 8 meses
Puntos: 0
Tabla bordes redondeados no se imprime

He creado una tabla con bordes redondeados y cuando imprimo, los bordes no aparecen

En la imagen A es como tiene de aparecer
En la imagen B adjunta es como se imprime

El código es este:

Código:
<!doctype html>
<html>
<head>
	<title></title>
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" style="border-color:black;border-radius:15px;border-style:solid;width:700px;">
	<tbody>
		<tr>
			<td colspan="4"><strong style="color: rgb(255, 255, 255); font-family: arial, helvetica, sans-serif; font-size: 12px;">&nbsp;&nbsp; &nbsp;&nbsp;<span style="background-color: rgb(0, 0, 0);">CLIENTE</span></strong></td>
		</tr>
		<tr>
			<td><strong style="font-family: arial, helvetica, sans-serif; font-size: 12px;"><span style="white-space: nowrap;">Id<br />
			Nombre Fiscal:</span><br />
			<span style="white-space: nowrap;">Nombre Comercial:<br />
			Persona contacto:</span></strong></td>
			<td><span style="font-size: 12px;"><span style="font-family: arial, helvetica, sans-serif;"><span style="white-space: nowrap;">${cliente.id}</span></span></span><br />
			<span style="font-size: 12px;"><span style="font-family: arial, helvetica, sans-serif;">${cliente.NOMBREFISCAL}</span></span><br />
			<span style="font-size: 12px;"><span style="font-family: arial, helvetica, sans-serif;"><span style="white-space: nowrap;">${cliente.NOMBRECOMERCIAL}&nbsp;</span><br />
			<span style="white-space: nowrap;">${cliente.PERSONADECONTACTO}</span><br />
			<span style="white-space: nowrap;">${clienteNuevo}</span></span></span></td>
			<td><strong style="font-family: arial, helvetica, sans-serif; font-size: 12px;"><span style="white-space: nowrap;">Domicilio:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><br />
			<span style="white-space: nowrap;">Poblaci&oacute;n:<br />
			Provincia:</span><br />
			<span style="white-space: nowrap;">Tfno/M&oacute;vil<br />
			Email</span></strong></td>
			<td><span style="font-family: arial, helvetica, sans-serif; font-size: 12px; white-space: nowrap;">${cliente.DOMICILIO}</span><br style="font-family: arial, helvetica, sans-serif; font-size: 12px;" />
			<span style="font-family: arial, helvetica, sans-serif; font-size: 12px; white-space: nowrap;">${cliente.POBLACION}</span><br style="font-family: arial, helvetica, sans-serif; font-size: 12px;" />
			<span style="font-family: arial, helvetica, sans-serif; font-size: 12px; white-space: nowrap;">${cliente.PROVINCIA}<br />
			${cliente.TELEFONO} / ${cliente.MOVIL}<br />
			${cliente.EMAIL}</span></td>
		</tr>
	</tbody>
</table>
 
<p>&nbsp;</p>
</body>
</html>
Alguna solución?