tailwindcss icon indicating copy to clipboard operation
tailwindcss copied to clipboard

A utility-first CSS framework for rapid UI development.

Results 76 tailwindcss issues
Sort by recently updated
recently updated
newest added

Adds first-class support for 3d transformations using the existing TailwindCSS architecture. This PR also sees GPU acceleration activated by default, but this can be easily switched to using CPU by...

**What version of Tailwind CSS are you using?** "@nuxtjs/tailwindcss": "6.10.1", **What build tool (or framework if it abstracts the build tool) are you using?** Nuxt 3.8.2 **What version of Node.js...

Related discussion #12127 ```css @supports (overflow-wrap: anywhere) { .break-anywhere { overflow-wrap: anywhere; } } @supports not (overflow-wrap: anywhere) { .break-anywhere { word-break: break-word; } } ```

Hello everyone, we sometimes have a problem with the npx tailwindcss build in different instances: ![image](https://github.com/tailwindlabs/tailwindcss/assets/16542619/03bb407c-c4ea-44f6-a1eb-c03c05aff6cb) After some investigation of the whole components css the error comes through as @apply...

needs reproduction

This PR adds support for `@starting-style` through the `starting:` variant. `@starting-style` was [shipped in Chrome 117](https://chromestatus.com/feature/4515377717968896) Further Reading: - https://www.bram.us/2023/05/24/the-yellow-fade-technique-with-modern-css-using-starting-style/

### Discussed in https://github.com/tailwindlabs/tailwindcss/discussions/12804 Originally posted by **asimpletune** January 22, 2024 Originally I was going to write this in [the PR](https://github.com/biomejs/biome/pull/1362) for biomejs, but then I figured it's actually a...

Here is an updated version of https://github.com/tailwindlabs/tailwindcss/pull/8418 The full explanation is there but essentially comes down to using CSS Modules with the default of a local scope. It helps prevent...

This adds two variants for the [`scripting`](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/scripting) media query. `noscript` for when JavaScript is disabled and `scripting` for when it's enabled.

v4

This PR is a continuation of #12715 to apply the same improvements for Windows. On Windows the path separator is `\\` and `\\` is also used for escaping the `[`,...

This adds utilities for the [contain](https://developer.mozilla.org/en-US/docs/Web/CSS/contain) property, which is supported in all evergreen browsers by now 🙏👌 After that, contain-intrinsic-* (height/width/size) could be a nice addition too (but lacks browser...