I Don't Speak Code

a collection of online IDEs for use on a web browser

View on GitHub

CSS simple examples

Copy paste the code here to use within the CSS REPL.

Set background color

body {
  background-color: lightblue;
}

Now pick what color you like!

green? red? pink?

You can also use hex colors

body {
  background-color: #389451;
}

Hex is a way to represent colors. You can use this page to use a color picker.

Set font

You can use many attributes to change the font on a HTML element.

body {
  font-weight: bold;
}