sql >> Base de Datos >  >> RDS >> Mysql

Word Wrap no permite que los números se ajusten también

Intenta designar un ancho de la tabla a través de css.

<table border="1" style="table-layout: fixed; width: 150px;">
    <tr>
        <th>Id</th>
        <th style="word-wrap: break-word;">numbers</th>

    </tr>
    <?php while( $row = $stmt->fetch(PDO::FETCH_ASSOC) ) { ?>
    <tr>
        <td style="word-wrap: break-word;"><?php echo $row['id']; ?></td>
        <td style="word-wrap: break-word;"><?php echo $row['numbers']; ?></td>
    </tr>
    <?php } ?>
</table>