Button Generator
Design stunning CSS buttons with hover effects, gradients, and shadows.
Controls
12px
8px
16px
10px
CSS Code
.button {
background-color: #3b82f6;
color: #ffffff;
padding: 12px 24px;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
border: none;
cursor: pointer;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
transition: all 0.2s ease;
}
.button:hover {
opacity: 0.9;
transform: translateY(-1px);
}