🎓 Choose Your Learning Path

Learn CSS Grid in the syntax you'll actually use

📘
AVAILABLE

Pure CSS

Universal foundation - works everywhere

Best for beginners
Universal knowledge
9 complete lessons
Grid Detective game
.container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
Start CSS Course →
🎨
AVAILABLE

Tailwind CSS

Modern utility-first framework

Most popular in 2024
Fastest development
9 complete lessons
React/Vue friendly
<div class="grid grid-cols-3 gap-4">
  <!-- items -->
</div>
Start Tailwind Course →
⚛️
AVAILABLE

JavaScript

Style objects for React & Vue

Component-based styling
Dynamic layouts
9 complete lessons
CSS-in-JS approach
const style = {
  display: 'grid',
  gridTemplateColumns: '1fr 1fr'
}
Start JavaScript Course →
🎨
AVAILABLE

SCSS

Powerful CSS preprocessor

Variables & mixins
Reusable patterns
9 complete lessons
Advanced features
$cols: 3;
.grid {
  display: grid;
  grid-template-columns: repeat($cols, 1fr);
}
Start SCSS Course →

Already know CSS Grid? Just want to use the generator?

Skip to Generator →

💡 Recommendation: Start with Pure CSS to learn the fundamentals, then explore framework-specific courses later.

More courses launching soon! Each course is completely separate with its own lessons and game.