<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Active Button</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="h-screen flex justify-center items-center">
<button class="bg-blue-500 active:bg-blue-700 text-white font-bold py-2 px-4 rounded">
Click me
</button>
</div>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.