iwantcoding.com
🔥 Daily 👥 Rooms 🏆 Top Log in Sign up
« Previous

CSS HOME

Welcome to the iwantcoding.com CSS Tutorial. The sidebar walks the language top-to-bottom — from the cascade and selectors through to grid, animations, and the modern reference.

Recommended starting path

  1. Introduction — what CSS is and where it fits.
  2. Syntax — selectors, declarations, blocks.
  3. How To — inline / internal / external styles.
  4. Box Model + box-sizing.
  5. Flexbox & Grid — modern layout.
  6. Media Queries + RWD intro.
  7. CSS Variables + Specificity.
  8. Capstone — build a small site with what you learned.

What's on every lesson page

SectionWhat it does
Lesson bodyExplanation with figures or tables.
ExampleA runnable snippet. Click Try it Yourself » to edit it live.
ExerciseFill-in-the-blank to lock in the concept.
Test yourself3-question quiz.
Mark completeUpdates the sidebar progress bar.
Tip: Follow the syllabus on a first pass. Once you've finished the foundations, the rest of the topics are useful in any order.

Example

Example
<!DOCTYPE html>
<html>
<head>
<style>
body { font-family: Verdana, sans-serif; }
.box { background: #04AA6D; color: #fff; padding: 20px; border-radius: 6px; }
</style>
</head>
<body>

<h1>CSS HOME</h1>
<div class="box">Edit the CSS on the left, then click Run &raquo;</div>

</body>
</html>
Try it Yourself »

Exercise

Open the runnable example by clicking the green button labelled…

Click:

Test yourself

Q1. Where on every lesson page is the runnable example?
Q2. What tracks your progress through the tutorial?
Q3. A good order to learn CSS is…

Discussion

Loading…

« Previous