Hover Button

A button with smooth hover animation and color transition.

button
hover
animation

Preview

Loading preview...

HTML

<button class="hover-button">Hover Me</button>

CSS

.hover-button {
  padding: 12px 24px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
}
.hover-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.3);
}

© 2025 AnyCSS. All rights reserved.