Lily's - Kit

Enhanced human interfaces
& user experiences

Powered by dead simple CSS props and a mix of common convention rules.

anchor article button details flex grid input label list slider table textarea

Table native

<table/> element in web development is used to create a structured grid layout for displaying tabular data. It consists of one or more <tr/> (table row) elements, each containing one or more <td/> (table data) or <th/> (table header) elements. Tables are essential for presenting data in a structured and organized manner.

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Age</th>
      <th>City</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>John Doe</td>
      <td>30</td>
      <td>New York</td>
    </tr>
    <tr>
      <td>Jane Smith</td>
      <td>25</td>
      <td>Los Angeles</td>
    </tr>
  </tbody>
</table>
NameAgeCity
John Doe30New York
Jane Smith25Los Angeles