TIL Details element that creates a accordion
POSTED ON:
HTML Clickable details element!
<details>
<summary>Click Here to get the user details</summary>
<table>
<tr>
<th>#</th>
<th>Name</th>
<th>Location</th>
<th>Job</th>
</tr>
<tr>
<td>1</td>
<td>Adam</td>
<td>Huston</td>
<td>UI/UX</td>
</tr>
</table>
</details>
See the Pen HTML only Clickable Details Element by rockykev (@rockykev) on CodePen.
Related TILs
Tagged: html