Simple Website - Vocabulary Flashcards
CSS
Cascading Style Sheets, the computer code that defines the visual presentation of web pages.
Rule
The entirety of a CSS selector and its declarations.
Selector
CSS syntax that defines elements on a page to which declarations should be applied.
Declaration
Pairs of CSS properties and values that define how an element should be styled.
Property
CSS syntax that defines which part of an element should be styled, such as its color, size, position, and so on.
Value
CSS syntax that sets the variable units for properties.
Mobile First
The technique of creating mobile websites first and then progressively enhancing them to create the desktop version.
Hexadecimal
A base-16 number system that uses the letters “A” through “F” to represent the numerals 10 through 15.
Comment
A reminder or visual cue in computer code that’s meant to be readable by programmers. Comments are typically not interpreted by the browser and shouldn’t impact a website’s function in any way.
Block-Level Elements
Block elements occupy the width of their containers and generally include a line break before and after the element.
Inline Elements
Inline elements occupy the width of their contents and do not begin a new line when formatted as text.