Problem: Adaptive Data Table
Try to create a responsive data table that morphs from a traditional table to a grid card layout and then to a stacked flex format using CSS Container Queries.
We'll cover the following...
We'll cover the following...
Problem description
You have a <div class="table-wrapper">
containing a <table>
with <thead>
and <tbody>
rows and cells. Write CSS so that:
.table-wrapper
declarescontainer-type: inline-size
.Large (≥800px): The
<table>
usesdisplay: table
...