`, `| `, and ` | ` elements correctly.
+
+### Utility Classes for Structure
+
+| Class | Description |
+| :--- | :--- |
+| `w-full` | Ensures the table takes up the full width of its container. |
+| `text-left` | Aligns text in header and data cells for better readability. |
+| `table-auto` / `table-fixed` | Controls how the browser sets column widths. `table-auto` is the default. |
+
+```html title="index.html"
+
+
+
+
+ | Product |
+
+
+
+
+
+
+ | Laptop X |
+
+
+
+
+```
+
+
+
+
+## 2. Styling Rows and Cells
+
+Good table design involves consistent padding, clear dividers, and legible text styles.
+
+### A. Cell Padding and Text
+
+Use padding utilities (`p-`, `px-`, `py-`) and font utilities (`text-`, `font-`) on the ` | ` and ` | ` tags.
+
+```html title="index.html"
+ |
+ Sales
+ |
+
+ $12,500
+ |
+```
+
+### B. Striped Rows (Zebra Stripes)
+
+Alternating row colors dramatically improves readability, especially for wide tables. Use the pseudo-class utility `odd:` or `even:` on the `