Welcome 🎉

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

No results for your search.
Sorry, an unexpected error occurred

Tính năng


The <Table> tag is used to create a table on the interface, with the help of the following tags:

📘
By default the <table> tag will not display the border, to display the border, we need to set the border='1' attribute for the <table> tag.


Cách sử dụng


For example :

<table border='1'>
  <thead>
    <tr>
      <th>Month</th>
      <th>Savings</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>January</td>
      <td>$100</td>
    </tr>
    <tr>
      <td>Jun</td>
      <td>$2000</td>
    </tr>
  </tbody>
</table>






Result:



Read more
On This Page