Table Layout - Tailwind CSS
Có thể bạn quan tâm
Basic usage
Auto
Use table-auto to allow the table to automatically size columns to fit the contents of the cell.
Song | Artist | Year |
---|---|---|
The Sliding Mr. Bones (Next Stop, Pottersville) | Malcolm Lockyer | 1961 |
Witchy Woman | The Eagles | 1972 |
Shining Star | Earth, Wind, and Fire | 1975 |
Fixed
Use table-fixed to allow the table to ignore the content and use fixed widths for columns. The width of the first row will set the column widths for the whole table.
You can manually set the widths for some columns and the rest of the available width will be divided evenly amongst the columns without explicit width.
Song | Artist | Year |
---|---|---|
The Sliding Mr. Bones (Next Stop, Pottersville) | Malcolm Lockyer | 1961 |
Witchy Woman | The Eagles | 1972 |
Shining Star | Earth, Wind, and Fire | 1975 |
Applying conditionally
Hover, focus, and other states
Tailwind lets you conditionally apply utility classes in different states using variant modifiers. For example, use hover:table-fixed to only apply the table-fixed utility on hover.
<table class="hover:table-fixed"> <!-- ... --> </table>For a complete list of all available state modifiers, check out the Hover, Focus, & Other States documentation.
Breakpoints and media queries
You can also use variant modifiers to target media queries like responsive breakpoints, dark mode, prefers-reduced-motion, and more. For example, use md:table-fixed to apply the table-fixed utility at only medium screen sizes and above.
<table class="md:table-fixed"> <!-- ... --> </table>To learn more, check out the documentation on Responsive Design, Dark Mode and other media query modifiers.
Từ khóa » Html Table Stretch To Fit
-
Html - Stretching A Table's Width To Fit Web Browser - Stack Overflow
-
How To Create A Full Width Table - W3Schools
-
CSS Table-layout Property - W3Schools
-
HTML Table Fit To Screen: Height, Width
-
Table-layout - CSS: Cascading Style Sheets - MDN Web Docs
-
Fit-content - CSS: Cascading Style Sheets - MDN Web Docs
-
Stop Using To Set Table Width In HTML: Here's Why »
-
How To Set HTML Table Width And Height
-
CSS- Div- Be Careful When You Size Your Divs
-
Stretch Table To Full Width Of Page
-
How Do I Make The Background Image Stretch To Fit The Table Cell?
-
Flexible Table Width - DataTables Example
-
Having A Table-cell Stretch - HTML & CSS - SitePoint Forums
-
How To Fit Table Column To Content Width In Tailwind - Simplernerd