tailwindcss
tailwindcss copied to clipboard
A utility-first CSS framework for rapid UI development.
## Version `[email protected]` and `@tailwindcss/[email protected]` ## Environment Output of `npx envinfo --system --binaries --browsers --npmPackages "{vite,tailwindcss,@tailwindcss/*,postcss-mixins}"`: ``` System: OS: Linux 6.6 Arch Linux CPU: (4) x64 Intel(R) Core(TM) i5-4590 CPU...
It was added in #2729 to override line heights set on the body by modern-normalize. However, it appears that modern-normalize never included any line-height definitions—only a font-family rule was present....
Resolves #15170. This PR adds support for bare integer values to the `col-*` and `row-*` utilities: ```css .col-5 { grid-column: 5; } .row-6 { grid-row: 6; } ``` These properties...
Here is everything you need to know about this update. Please take a good look at what changed and the test results before merging this pull request. ### What changed?...
Safari adds `display: inline-flex` to date/time inputs, and this causes some alignment issues to empty dates:  Issue demo: https://play.tailwindcss.com/5LRvozLfrJ By setting the display to `display: inline-block` (like the other...
This PR fixes an issue where using a modifier in combination with `has-*` or `not-*` doesn't work as expected. If you have the following HTML: ```html ``` Then the following...
This PR adds a new set of `radius-*` utilities to replace the existing `rounded-*` utilities. These utilities derive their values from the `--spacing-*` scale by default, but can also be...
**What version of Tailwind CSS are you using?** v4 beta 2 **What build tool (or framework if it abstracts the build tool) are you using?** docker and ruby **What version...
Preflight styles set `border-collapse: collapse`, which bugs how semi-transparent borders are rendered in Safari. Given this CSS: ```css table { border-collapse: collapse; } th, td { border-bottom: 1px solid rgba(0,...