Hello, I have a table and there is no way to show the border radius property in browsers (chrome and firefox). Only in the internet explorer can I see the effect. Anyone who can help me with this?
Thanks
.tabla_recibido td:first-child {
width: 150px;
padding-right: 30px;
border-radius: 10px;
}
.tabla_recibido td:nth-child(2) {
width: 130px;
padding-right: 30px
}
.tabla_recibido tr:nth-child(2) {
border-bottom: 0.5px solid
}
.tabla_recibido tr:nth-child(3) {
border-bottom: 0.5px solid
}
.tabla_recibido tr:nth-child(4) {
border-bottom: 0.5px solid
}
.tabla_recibido td:last-child {
width: 250px;
/*border-bottom-right-radius: 6px;
border-left: 0.5px solid*/
}
/*.tabla_recibido tr:first-child td:first-child{border-top-left-radius: 20px}
.tabla_recibido tr:first-child td:last-child{border-top-right-radius: 20px}
.tabla_recibido tr:first-child td:only-child{border-top-right-radius: 20px;
border-top-left-radius: 20px}*/
.tabla_recibido h6 {
font-size: 0.8em
}
.tabla_recibido td {
padding: 2px;
text-align: justify;
/*border: 0.5px solid;*/
}
.tabla_recibido li {
list-style: none;
}
.tabla_recibido {
border: 1px solid;
margin-bottom: 20px;
}
<table class="tabla_recibido">
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<tr id="fila1">
<td id="logo_recibido">
<img src="../../../img/logo.png">
</td>
<td colspan="2">
<h5><b>XXXXXXXX</b></h5>
<h5>Nombre del trabajador</h5>
<h5>Ruc: 17xxxxx</h5>
<h5>Direccion: Avexxxxxxxxx</h5>
<h5>Telefono: 097xxxxxxx</h5>
</td>
<td>
<h3><b>Orden:</b></h3>
<h1 id="orden"># 0000{!! $equipo->id !!}</h1>
<ul>
<li><b>Fecha de ingreso: </b>{!! date('d-m-Y',strtotime($equipo->created_at)) !!}</li>
<li>Valor: $ ___________</li>
<li>Abono: $ ___________</li>
<li>Saldo: $ ___________</li>
</ul>
</td>
</tr>
<tr id="cuerpo_recibido">
<td colspan="2">
<h4>Datos del Cliente:</h4>
<h5>Nombre: <small>{!! $equipo->cliente->nombres !!}</small></h5>
<h5>Apellidos: <small>{!! $equipo->cliente->apellidos !!}</small></h5>
<h5>Cédula: <small>{!! $equipo->cliente->cedula !!}</small></h5>
<h5>Teléfono: <small>{!! $equipo->cliente->telefono !!}</small></h5>
<h5>Dirección: <small>{!! $equipo->cliente->direccion !!}</small></h5>
</td>
<td colspan="2">
<h4>Datos del Equipo:</h4>
<h5>Identificador: <small>{!! $equipo->identificador !!}</small></h5>
<h5>Marca: <small>{!! $equipo->marca->name !!}</small></h5>
<h5>Modelo: <small>{!! $equipo->modelo !!}</small></h5>
<h5>Color: <small>{!! $equipo->color !!}</small></h5>
<h5>Daño: <small>{!! $equipo->descripcion !!}</small></h5>
<h6>Los Equipos xxxxx abandonados por lo tanto <b><i>Ingxxx</i></b>, no se responsabiliza del la devolución del mismo.</h6>
</td>
</tr>
<tr>
<td colspan="2">
<h6><b>NOTA:</b> El cliente declara ser el propietario legitimo del equipo, y que fue adquirido
<b><i>Lítitamente</i></b>, por lo cual autoriza la reparacion en nuestro taller.</h6>
</td>
<td>
<h4>Accesorios:</h4>
</td>
<td>
<ul>
<li>Chip_____</li>
<li>Bateria_____</li>
<li>Cargador_____</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2">
<h5>Firma cliente</h5>
</td>
<td colspan="2">
<h5>Firma conforme</h5>
</td>
</tr>
</table>