user64368
0
Q:

table html structure


<table style="width:100%"> 
  <tr>
      <th>Firstname</th>
      <th>Lastname</th> 
      <th>Age</th>
  </tr>
  <tr>
      <td>Jill</td>
      <td>Smith</td> 
      <td>50</td>
  </tr>
  <tr>
      <td>Eve</td>
      <td>Jackson</td> 
      <td>94</td>
  </tr>
</table>
 
12

    <table>

       
      <tr>

         
      <th>Month</th>

         
      <th>Savings</th>

       
      </tr>

       
      <tr>

         
      <td>January</td>

         
      <td>$100</td>

       
      </tr>

      </table>
 
11
<table>
    <thead>
        <tr>
            <th colspan="2">The table header</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>The table body</td>
            <td>with two columns</td>
        </tr>
    </tbody>
</table>
0

New to Communities?

Join the community