Replies: 1 comment 4 replies
-
You can do the same thing as in the documentation: <script src="https://unpkg.com/@tailwindcss/browser@4"></script>
<style type="text/tailwindcss">
@layer theme, base, components, utilities;
@import "tailwindcss/theme.css" layer(theme);
@import "tailwindcss/utilities.css" layer(utilities);
</style> |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With Tailwind 3 I could use the Play CDN and disable the Preflight styles like this:
However with Tailwind 4 there is no
tailwind.config
object. How can I disable the preflight styles using the Play CDN or any other method that does not involve a build step?Beta Was this translation helpful? Give feedback.
All reactions