CSS Table Width

  • Post category:CSS

Get the code of CSS Table Width and watch video tutorials. You can practice using our code editor. Our practical guide will make your learning journey much easier. You can explore the tutorial and learn.

<table>
	<tr>
  	<th>Fruit</th>
    <th>Price</th>
  </tr>
  <tr>
  	<td>Apple</td>
    <td>$100</td>
  </tr>
  <tr>
  	<td>Banana</td>
    <td>$150</td>
  </tr>
  <tr>
  	<td>Orange</td>
    <td>$250</td>
  </tr>
</table>
table, th, td {
  border: 2px solid;
}
table {
  width: 100%;
  border-collapse: collapse;
}