Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

change table column width css

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

th,
td {
  border: 1px solid black;
  width: 1000px;
  overflow: hidden;
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #table #column #width #css
ADD COMMENT
Topic
Name
7+5 =