Welcome 🎉

logo

ReactLMS

Search
Light Mode
Contact Us

1 min to read

Contact us

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

Giới thiệu


Tag caption dùng để chú thích cho 1 bảng.

Ta có thể dùng thuộc tính CSS caption-side để quyết định vị trí hiển thị của tag caption


Cách triển khai


Hãy tham khảo ví dụ sau:

<table border='1'>
  <caption style="caption-side:bottom">My savings</caption>
  <tr>
    <th>Month</th>
    <th>Savings</th>
  </tr>
  <tr>
    <td>January</td>
    <td>$100</td>
  </tr>
</table>






Kết quả

My savings
Month Savings
January $100



Read More
On This Page