How to create: full-width table
- Previous page Centered table
- Next page Nested tables
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%; {}
Related pages
Tutorial:CSS table
- Previous page Centered table
- Next page Nested tables