A complete CSS style statement: selector, property, and value.
Back
Syntax
Front
Arrangement of words and symbols in a language.
Back
internal
Front
CSS styles whose code is located within the head section of the HTML code of a web page. Control limited to that one HTML page. (also known as embedded)
Back
External Style Sheet
Front
Collection of styles stored in a separate file that controls the formatting of elements on any web page that links to the .css file.
Back
declaration
Front
Property name and value separated by a colon and terminated with a semicolon, for example... Font-family: sans serif;
Back
Class Selector
Front
A selector that applies the same attribute to any HTML element that references it. It can be used multiple times in an HTML document.
Back
selector
Front
The part of a CSS rule which specifies which element(s) are to be styled.
Back
CSS
Front
Cascading Style Sheets control the appearance and placement of HTML elements on a page.
Back
property
Front
The part of a CSS rule which specifies the type of modification to apply to HTML elements.
Back
ID Selector
Front
A selector that identifies only ONE element within an HTML document. It is always preceded by a # sign.
Back
Inline CSS Style
Front
CSS coded in the body of the webpage as an attribute of an html tag. Control limited to the one element with the style.
Back
Tag Selector
Front
A selector that applies style to all of a specific HTML tag.