Answers for "The CSS to make all the columns equal in width is as follows"

CSS
0

The CSS to make all the columns equal in width is as follows

table {
  table-layout: fixed ;
  width: 100% ;
}
td {
  width: 25% ;
}
Posted by: Guest on August-26-2021

Code answers related to "The CSS to make all the columns equal in width is as follows"

Browse Popular Code Answers by Language