#You mean something like span xxx or p

1 messages · Page 1 of 1 (latest)

thorn hemlock
#

If you own the markup, then I would apply tailwind to each element you want to style (especially if elements are created dynamically). If you don't own it (ie: a library) I would use plain old CSS. It also depends on what your use-case is.

carmine tide
#

I'm not sure what you mean. Do you mean that I need to manually set this up in the tailwind.config file?

#

So do I understand it correctly when I say that:

div > * {color: blue}
Is possible in tailwind (with [&>*]

But div * {color:blue} is not possible?