Answers for "make table cell less wide css"

CSS
0

make table cell less wide css

table {
  border: 1px solid black;
  table-layout: fixed;
  width: 200px;
}

th,
td {
  border: 1px solid black;
  width: 100px;
  overflow: hidden;
}
Posted by: Guest on January-26-2022

Browse Popular Code Answers by Language