DEV Community

Cover image for Hello DEV! I'm Teaching CSS Visually on YouTube 🎨
The dev fix
The dev fix

Posted on

Hello DEV! I'm Teaching CSS Visually on YouTube 🎨

πŸ‘‹ Hi everyone

I'm Sulaimon, the creator of THE DEV FIX on YouTube.

I create CSS tutorials that break down complex concepts into simple, visual explanations for beginners. Think of me as your friendly guide through the sometimes-confusing world of CSS! 🎨


🎯 What I'll be sharing on DEV

  • CSS tips & tricks I discover while creating tutorials
  • Behind-the-scenes of my YouTube process (how I plan, record, and edit)
  • Lessons learned from teaching code to beginners
  • New video announcements (with full written explanations + code snippets)

🎁 Free CSS Tip to Start

The one thing that helped me finally understand Flexbox?

Add this CSS temporarily when you're debugging:


css
.parent {
  border: 2px dashed red;
}

.parent > * {
  border: 2px solid blue;
}
This visual hack shows you:
- The **parent container** (red dashed border)
- All **child elements** (blue border)

Suddenly you can *see* how Flexbox distributes space!
---

## πŸ’¬ I Want to Hear From You

**What CSS concept still confuses you?**

Drop it in the comments and I'll create a tutorial on it!
Enter fullscreen mode Exit fullscreen mode

Top comments (0)