Newer
Older
minerva / Tests / LibWeb / Layout / input / table / fixed-layout.html
@minerva minerva on 13 Jul 466 bytes Initial commit
<style>
    table {
        width: 600px;
        table-layout: fixed;
        border-collapse: collapse;
        border: 1px solid black;
    }

    td {
        border: 1px solid black;
    }
</style>

<table>
    <tr>
        <td>cell</td>
        <td>cell</td>
        <td>A table cell</td>
        <td>A table cell</td>
    </tr>
    <tr>
        <td>cell</td>
        <td>cell</td>
        <td>A table cell</td>
        <td>A table cell</td>
    </tr>
</table>