Use Tailwind From A CDN
You can use Tailwind from a CDN in a single HTML file like this:
Hello world!
Don't do that for production, but it's great for quick dev work.
You can update the config by adding this to the head:
You can add custom styles like this:
<style type="text/tailwindcss">
@layer utilities {
.content-auto {
content-visibility: auto;
}
}
</style>
Source: https://tailwindcss.com/docs/installation/play-cdn
-- end of line --