Answers for "table colspan rowspan"

2

html table colspan and rowspan

<td colspan="4">Content</td>
<td rowspan="4">Content</td>
Posted by: Guest on September-29-2020
0

rowspan and colspan in html

<html>
  <body>
    <!-- Table start -->
    <table border="10">
      <tr>
        <!-- Colspan...Increases length of cell to x cell worth of length -->
        <td colspan="5">The tittle of a table</td>
      </tr>
      <tr>
        <td>Content-1</td>
        <td>Content-2</td>
        <td>Content-3</td>
        <!-- Rowspan...Increases height of cell to y cell worth of height -->
        <td rowspan="2">Content-4/8</td>
      </tr>
      <tr>
        <td>Content-5</td>
        <td>Content-6</td>
        <td>Content-7</td>
      </tr>
      <table>
    <!-- Table end -->
    
  </body>
</html>
Posted by: Guest on October-27-2021

Code answers related to "table colspan rowspan"

Browse Popular Code Answers by Language