Are these instructions still valid for v3? #6255
frederikhors
started this conversation in
General
Replies: 1 comment
-
You probably want to use the https://tailwindcss.com/docs/functions-and-directives#layer Where you put your custom CSS depends on what you're trying to do. CSS rules defined later in the stylesheet take precedence over those defined earlier, so if you want to be able to override your CSS with utilities, you want your CSS first. If you want your CSS to take precedence over utilities, you want it last. This blog post might be helpful: |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Not so long ago in the installation instructions of Tailwind it was written to insert the custom css code between
base, components
andutilities
, like:Now I'm using v3 with PostCSS, is that still the case?
Or can I have the following situation instead?
or
Beta Was this translation helpful? Give feedback.
All reactions