CSS Button Generator - Online Button Maker

Generate CSS buttons online. Customize colors, shadows, borders, and hover effects.

Share

Button Presets

Button Styles

Shadow Effects

CSS 代码

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background-color: #3b82f6;
  border: 0px solid #3b82f6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

Live Preview

悬停查看交互效果,点击复制 CSS 代码

Related Tools

More CSS & UI Generators