CSS Flexbox Generator

Visually generate CSS flexbox layouts with live preview. Configure flex-direction, wrap, justify-content, align-items, and gap.

Live Preview

1
2
3
4

Generated CSS

.container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  gap: 8px;
}

Часто задаваемые вопросы

Comments & Feedback

Comments are powered by Giscus. Sign in with GitHub to leave a comment.