1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<!DOCTYPE html> <style> table { table-layout: fixed; border: 1px solid black; width: 300px; } td { background: yellow; border: 1px solid purple; } </style> <table> <td>One</td> <td>Two</td> <td>Three</td> </table>