CSS stands for this.
What is cascading style sheets?
This CSS sets the text color for the page's body to black.
What is body {color:black;}?
This property changes the background color.
What is background-color?
This property defines the width of an element.
What is width?
This property defines the border of an element.
What is border?
This comments a line in CSS.
What is /*this is a comment*/?
What is h1 {background-color: #FFFFFF;}?
This property changes the color of the text.
What is color?
This property creates a shadow affect on the box model.
What is box-shadow?
This property removes the bullet points of an unordered list.
What is list-style-type:none;?
This selects an element with id "demo".
What is #demo?
This CSS makes the paragraph element's text bold.
What is p {font-weight:bold;}?
This property controls the text size.
What is font-size?
This property defines the bottom margin of an element.
What is margin-bottom?
This property floats an element to the left.
What is float:left?
This selects an element with class "demo".
What is .demo?
This CSS displays hyperlinks without an underline.
What is a {text-decoration:none;}?
This property changes the font family of an element.
What is font-family?
This is the default value of the position property.
What is static?
This property changes the list so that the list items are accented with squares.
What is list-style-type:square;?
This separates grouped selectors in CSS.
What is a comma?
This CSS makes each word in a text start with a capital letter.
What is text-transformative:capitalize?
This property changes the left margin of an element.
What is margin-left?
This property changes the spacing between letters.
What is letter-spacing?
This property changes the spacing between lines of text.
What is line-height?