'what does "@tailwind screens;" do ?
I'm learning tailwindcss recently,and I don't understand the @tailwind screens;
Who can explain it or show the usage ?
Solution 1:[1]
In the previous release of Tailwind (v2), @tailwind screens; would generate responsive utility classes at build-time.
However, in Tailwind v3, this has been replaced by the more generic directive @tailwind variants;.
Solution 2:[2]
I found it in the offical repository test file.
@tailwind screens; is just a anchor where the @media style generated will be injected rather than very end of stylesheet.
@tailwind screens; is deprecated since tailwindcss v2.2 certainly. I found the changelog.

Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Caleb Denio |
| Solution 2 | Dreamoon |

