Friends, can someone help me with this problem? I have a modal, which contains a table with several cells, and one of the cells contains a long text, but the text comes out of the modal not respecting the cell. Attached image for reference.
Can anyone know why this happens?
The code and classes are as follows:
<!-- MODAL DE INFORMACION PROCESOS -->
<div class="modal fade" id="verProcesoModal" role="dialog" data-keyboard="false">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header"><h5 class="title" id="varCodigoProceso"></h5></div>
<!-- MODAL BODY -->
<div class="modal-body">
<label>Detalles del proceso realizado:</label>
<div id="varProcesoTecnico2">
<table class="table table-striped table-bordered" style="table-layout:fixed">
<tbody>
<tr>
<td width="250px">Fecha del proceso:</td>
<td class="text-primary"></td>
</tr>
<tr>
<td>Técnico del proceso:</td>
<td class="text-primary">Juan Lopez</td>
</tr>
<tr>
<td>¿Que Software o Drivers instaló?:</td>
<td class="text-primary">SISTEMA OPERATIVO + DRIVERS + SOFTWARE
</td>
</tr>
<tr>
<td>Observaciones del Proceso:</td>
<td>EL AJAX ES SIMPLEMENTE "SERIALIZAR" EL FORMULARIO, Y EN EL CONTROLADOR SIMPLEMENTE RECIBES LOS DATOS Y LOS SEPARAS, REVISA LA DOCUMENTACIóN, REALMENTE ES MUY SENCILLO.</td>
</tr>
<tr>
<td>Costo del proceso:</td>
<td class="text-primary"> $ 5000</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- FIN MODAL BODY -->
<div class="modal-footer">
<button type="button" class="btn btn-block btn-danger" data-dismiss="modal">Cerrar Proceso</button>
</div>
</div>
</div>
</div>
Thank you very much