Pagination Component CSS Generator

Generate CSS pagination components with live preview.

1.0Kuses
9.1/10(76)
ยซ
1
2
3
4
5
ยป
40px
8px
4px
14px

CSS Code

.pagination {
  display: flex;
  gap: 4px;
  align-items: center;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #1e1e2e;
  color: #a0a0b0;
  border: 1px solid #333355;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.page-btn:hover {
  background: #2a2a4e;
}

.page-btn.active {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
}

Disclaimer: This tool is provided as-is for informational and educational purposes only.

ToolBird Assistant

Find the right tool instantly

Hey! I'm ToolBird Assistant. Tell me what you need and I'll find the right tool for you.