How to create: full-width table

Learn how to use CSS to create a full-width table.

Table without set width:

Firstname Lastname Age
Jill Smith 50
Eve Jackson 94
John Doe 80

Full-width table:

Firstname Lastname Age
Jill Smith 50
Eve Jackson 94
John Doe 80

How to create a full-width table

To create a full-width table, please use width: 100%:

Example

table {
  width: 100%;
{}

Try it yourself

Related pages

Tutorial:CSS table