Answers for "html table make all columns the same width with colspan"

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

Code answers related to "html table make all columns the same width with colspan"

Browse Popular Code Answers by Language