How can I make the divide-gray-600
utility only apply to divide-x
? It appears that there is no specific divide-x-gray-600
option available. I am attempting to give the second item a red bottom border:
<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet"/>
<div class="flex items-stretch w-full divide-x divide-gray-600 text-center bg-gray-100">
<div class="flex-1 border-b border-red-600 p-2">Red border bottom</div>
<div class="flex-1 border-b border-red-600 p-2">Should have red border bottom</div>
<div class="flex-1 border-b border-gray-600 p-2">Gray border bottom</div>
</div>