DEV Community

Cover image for Tesella, A Grid Generator
Miguel
Miguel

Posted on

Tesella, A Grid Generator

Tired of writing CSS Grid blindly? Tesella is a visual editor that generates CSS Grid code automatically.

What it does

Tesella lets you design layouts with a drag-and-drop interface and get production-ready code in multiple formats:

HTML + CSS
JSX for React
Tailwind CSS
Pure CSS Grid

How it works

Configure columns, rows, and spacing
Drag elements on the grid
Resize with visual handles
Copy the generated code

Why it's useful
Instead of this:

css.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
Enter fullscreen mode Exit fullscreen mode

.item { grid-column: 1 / 3; }
You design visually and get the exact code you need.
Tech stack
Built with React, TypeScript, and Vite. Modern interface with syntax highlighting.

Try it

Tesella Demo
Github Repository

Top comments (0)

Some comments may only be visible to logged-in visitors. Sign in to view all comments.