Answers for "div in table width"

CSS
0

css table th width

th {
  width: 50px;
}
Posted by: Guest on November-02-2021
2

give table width 100%

<table style = "width:100%">
          <tr>
              <th>A</th>
              <th>B</th>
              <th>C</th>
          </tr>
          <tr>
          	<tb>a</tb>
          	<tb>b</tb>
          	<tb>c</tb>
          </tr>
      </table>
Posted by: Guest on July-09-2021

Browse Popular Code Answers by Language