-
How can I simulate this effect with tailwind? |
Beta Was this translation helpful? Give feedback.
Answered by
wongjn
Sep 20, 2023
Replies: 1 comment 4 replies
-
You should be able to apply the same CSS properties as the example using Tailwind classes. |
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
They are available:
background-image: linear-gradient(to right, black 50%, white 50%)
can be applied withbg-gradient-to-right from-black from-50% to-white to-50%
.background-size: 200% 100%
can be applied withbg-[length:200%_100%]
.background-position: right bottom
can be applied asbg-right-bottom
.