This page shows a disabled button, input, and select. Each uses Tailwind's disabled: styles to look faded and not interactive.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Disabled State Styling Example</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="flex flex-col items-center justify-center min-h-screen gap-6 bg-gray-50 p-6">
<button disabled class="disabled:opacity-50 disabled:cursor-not-allowed bg-blue-600 text-white px-6 py-3 rounded font-semibold">
Disabled Button
</button>
<input disabled placeholder="Disabled input" class="disabled:bg-gray-200 disabled:text-gray-500 border border-gray-400 rounded px-3 py-2 w-64" />
<select disabled class="disabled:bg-gray-100 disabled:cursor-not-allowed border border-gray-400 rounded px-3 py-2 w-64">
<option>Disabled Select</option>
</select>
</body>
</html>