All languages
CSS programming language logo

CSS

Style the web

CSS (Cascading Style Sheets) controls how every HTML element looks: colour, size, position, animation. It is what turns a plain document into a polished web page.

Chapters

  1. 1Introduction to CSS
  2. 2Setting up CSS
  3. 3CSS Syntax
  4. 4Variables
  5. 5Data Types
  6. 6Operators
  7. 7Conditional Statements
  8. 8Loops
  9. 9Functions
  10. 10Arrays and Collections
  11. 11Strings
  12. 12Objects and Structures
  13. 13Error Handling
  14. 14Modules and Packages
  15. 15Input, Output and Files
  16. 16CSS Syntax Cheatsheet
  17. 17Best Practices and Next Steps

What this CSS course covers

The 17 chapters above are ordered deliberately: each one only uses ideas already introduced, so nothing arrives before you have the vocabulary for it. The early chapters get a program running and explain how CSS stores values. The middle chapters give you control flow and reusable functions — the point at which you can solve real problems. The later chapters handle data structures, errors and the tooling and libraries you meet on actual projects.

CSS decides how a page looks: colour, spacing, typography, layout and motion. This online CSS playground pairs your stylesheet with sample markup and renders the result instantly, which makes it the quickest way to build intuition for the box model, Flexbox and Grid.

How to study CSS so it sticks

  1. Read the chapter once without touching the keyboard

    Get the shape of the idea first. Stopping every line to type breaks the explanation into fragments you then have to reassemble.

  2. Retype every example from scratch

    Do not copy and paste. Typing forces you to notice punctuation, indentation and the order things happen in — the three things beginners lose marks and hours on.

  3. Break it on purpose

    Delete a semicolon, misspell a variable, remove a bracket. Read the error carefully. You are building a mental index of error messages, which is most of what practical debugging is.

  4. Write one tiny program of your own

    One idea, five to fifteen lines: a converter, a counter, a grader, a mini quiz. Original code that works teaches more than a hundred lines you followed along with.

  5. Come back the next day and redo it from memory

    Spaced recall is the difference between finishing a course and keeping it. Five minutes of yesterday's example before today's chapter is enough.

Why CSS is worth your time

CSS controls everything a visitor actually sees, and layout skills transfer directly to every framework and design system.

Modern CSS handles responsive layout, theming and animation natively, so a lot of what once needed JavaScript is now a few declarations.

Where CSS is used

  • Responsive website and app layouts
  • Design systems and component libraries
  • Animations and interaction polish
  • Dark mode and theming

Mistakes CSS beginners hit first

My rule is ignored

Why: A more specific selector wins, or the property is misspelled.

Fix: Raise specificity (or reorder the rules) and check the spelling — invalid properties are silently dropped.

Margins collapse unexpectedly

Why: Adjacent vertical margins merge into the larger one.

Fix: Use padding on the parent, or make the parent a flex container.

The element ignores width

Why: It is an inline element.

Fix: Set display: block or inline-block before applying width.

CSS course FAQs

What will I be able to build after the CSS course?

By the end of the 17 chapters you can read CSS code written by others, write small programs on your own — input handling, loops, functions, working with collections — and debug them from the error message rather than by guessing.

Do I need any experience before starting CSS?

No. Chapter one assumes you have never written a line of code. If you have programmed before, skim the first four chapters and start at the loops and functions section instead.

How much time should I spend per CSS chapter?

Around 20 minutes reading and 20 minutes retyping and experimenting. The retyping matters more than the reading, because recall — not recognition — is what you need when you write code yourself.

Can I run the CSS examples without installing anything?

Yes. Every chapter includes an editor with a run button, and there is a dedicated CSS compiler page with tutorials and graded exercises.

Practise CSS while you read