SyntaxFix
Write A Post
Hire A Developer
Questions
Using table-layout: fixed as a property for table and width: calc(100%/3); for td (assuming there are 3 td's). With these two properties set, the table cells will be equal in size.
table-layout: fixed
table
width: calc(100%/3);
td
Refer to the demo.