CSS
Syntax
Properties
More Properties
Even More Properties
200

CSS stands for this.

What is cascading style sheets?

200

This CSS sets the text color for the page's body to black.

What is body {color:black;}?

200

This property changes the background color.

What is background-color?

200

This property defines the width of an element.

What is width?

200

This property defines the border of an element.

What is border?

400

This comments a line in CSS.

What is /*this is a comment*/?

400
This CSS sets the background color for all h1 elements to white.


What is h1 {background-color: #FFFFFF;}?

400

This property changes the color of the text.

What is color?

400

This property creates a shadow affect on the box model.

What is box-shadow?

400

This property removes the bullet points of an unordered list.

What is list-style-type:none;?

600

This selects an element with id "demo".

What is #demo?

600

This CSS makes the paragraph element's text bold.

What is p {font-weight:bold;}?

600

This property controls the text size.

What is font-size?

600

This property defines the bottom margin of an element.

What is margin-bottom?

600

This property floats an element to the left.

What is float:left?

800

This selects an element with class "demo".

What is .demo?

800

This CSS displays hyperlinks without an underline.

What is a {text-decoration:none;}?

800

This property changes the font family of an element.

What is font-family?

800

This is the default value of the position property.

What is static?

800

This property changes the list so that the list items are accented with squares.

What is list-style-type:square;?

1000

This separates grouped selectors in CSS.

What is a comma?

1000

This CSS makes each word in a text start with a capital letter.

What is text-transformative:capitalize?

1000

This property changes the left margin of an element.

What is margin-left?

1000

This property changes the spacing between letters.

What is letter-spacing?

1000

This property changes the spacing between lines of text.

What is line-height?