The docs say that with the jit mode you can use arbitrary values for background positioning, giving the example:
<div class="bg-[center_top_1rem]">
But this isn't an arbitrary css value like say 80px.
Is there any documentation for this syntax?
1rem obviously offsets the top value, but how would I also offset the center? My guess of bg-[center_2rem_top_1rem] doesn't work.
I'm also surprised that something like bg-[0% 20%] doesn't work, especially as I've seen it suggested as answers to other questions.
Thanks