Is there a way to prevent the label from expanding along with the description in tailwindcss?
<script src="https://cdn.tailwindcss.com"></script>
<div class="flex items-center">
<div>block</div>
<div class="ml-6">
<p>
Title
</p>
<p class="bg-blue-500">
Description long long long long long long long long long long long long long
</p>
<div class="px-2 py-1 bg-red-500 rounded-xl text-xs text-gray-700">
Label...
</div>
</div>
</div>