I want to know how to set a max-width css property to table (td and th tags).
This syntax doesn't work with me.
td,th{
   max-width:100px;
}
I want to know how to set a max-width css property to table (td and th tags).
This syntax doesn't work with me.
td,th{
   max-width:100px;
}
Just create a <div> inside of each <td> and/or <th> and give it the max-width that you want.
get a look at my working codepen
using table-layout: fixed :
table {
  max-width: 100px;
  table-layout: fixed;
}