'How do i make warping button using tailwind css v3 or vanilla css?
Solution 1:[1]
<script src="https://cdn.tailwindcss.com"></script>
<div class="p-4">
<div class="absolute h-10 w-28 -skew-y-6 rounded-tr-[20px] rounded-l-[20px] rounded-br-none bg-blue-600"></div>
<div class="absolute top-2 mt-5 h-10 w-28 skew-y-6 rounded-l-[20px] rounded-br-[20px] rounded-tr-none bg-blue-600"></div>
<button class="absolute left-9 top-7 bg-transparent text-xl font-bold text-white">Start</button>
</div>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | odie jordie |

