This is the following I am using a site table: DataTables and what is happening is as follows:
AsyoucanseethetextgetsallinlinewhichmakesitdifficulttoreadbecauseyouhavetoscrollmydoubtishowdoImakeautomaticparagraphsorthatthetablebreakstheline.
<divclass="card-block">
<div class="dt-responsive table-responsive">
<table id="basic-btn" class="table table-striped table-bordered">
<thead>
<tr>
<th>ID</th>
<th>Nome do Cliente</th>
<th>Serial Number</th>
<th>Fabrincante</th>
<th>Modelo</th>
<th>Avaria</th>
<th>Causa</th>
<th>Relatório</th>
<th>Data</th>
<th>Num Obra</th>
<th style="min-width:80px;">Ação</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>Exemplo/td>
<td>Exemplo</td>
<td>Exemplo</td>
<td>Exemplo</td>
<td>Exemplo</td>
<td>Exemplo</td>
<td style="word-wrap:break-word"> </td>
<td>Exemplo</td>
<td>Exemplo</td>
<td style="vertical-align: middle;">
<button type="button" class="btn btn-info edit" data-toggle="modal" data-target="#modalEditar"><i class="fa fa-edit fa-lg"></i></button>
<button type="button" data-toggle="modal" data-target="#awesome-modal" class="btn btn-danger md-effect-1 apagar"><i class="fa fa-trash fa-lg"></i></button>
</td>
</tr>
</tbody>
</table>
</div>
</div>