Answers for "css td same width"

0

html make table columns same width

<table style="table-layout: fixed; width: 100%;" >
<tr>
  <td style="width:25%;">First column</td>
  <td style="width:25%;">Second column</td>
  <td style="width:25%;">Third column</td>
  <td style="width:25%;">Fourth column</td>
</tr>
Posted by: Guest on May-23-2021
0

table all cells same width

<table style="table-layout: fixed; width: 100%;" >
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language