Answers for "html table borders"

106

table html

<table>
  <thead>
    <tr>
      <th>header1</th>
      <th>header2</th>
      <th>header3</th>
    </tr>
   </thead>
   <tbody>
     <tr>
       <td>text1.1</td>
       <td>text1.2</td>
       <td>text1.3</td>
     </tr>
     <tr>
       <td>text2.1</td>
       <td>text2.2</td>
       <td>text2.3</td>
     </tr>
     <tr>
       <td>text3.1</td>
       <td>text3.2</td>
       <td>text3.3</td>
     </tr>
     <tr>
     </tr>
  </tbody>
</table>
Posted by: Guest on February-16-2020
11

table border css

table, th, td {
  border: 1px solid black;
}
Posted by: Guest on April-14-2020
9

table html tages

<table>
  <tr> <!-- This is the first row -->
    <th>This is the heading</th>
    <th>Next heading to the right</th>
  </tr>
  <tr> <!-- This is the second row -->
    <td>This is where the table data goes</td>
    <td>This is the second columns data</td>
  </tr>
</table>
Posted by: Guest on April-24-2020
0

table html border

<table border>
    <thead>
        <tr>
            <td>To</td>
            <td>date</td>
            <td>message</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Join</td>
            <td>24/02/2021 13:00 PM</td>
            <td>Thank you for share your pen with me</td>
        </tr>
      	<tr>
            <td>Harry</td>
            <td>24/02/2021 13:00 PM</td>
            <td>Thank you for share your magic wand with me</td>
        </tr>
    </tbody>
</table>
Posted by: Guest on August-14-2021

Browse Popular Code Answers by Language