Can you use two linear backgrounds on a single element in Tailwind CSS? I found this CSS code that seems to achieve it:
background-image: linear-gradient(to right, #f8fafb 50%, #161616 50%),
linear-gradient(to right, #161616 50%, #f8fafb 50%);
I attempted to replicate it like this:
className = "bg-gradient-to-r from-white to-black bg-gradient-to-r from-black to-white";
Tried a few different combinations as well but no luck. Any advice or suggestions would be greatly appreciated :)