used in CSS to convey metadata, conditional information, or other descriptive information
Back
,
Front
the symbol used to separate multiple selectors
Back
[data-info^="c"]
Front
If you wanted to select all the elements that have the attribute 'data-info' and begin with c's which substring-selector would you use?
Back
nested statement
Front
subset of at-rules, a nested block that will only be applied to the document if a specific condition is met
Back
declaration block
Front
the area where the CSS declarations are made between brackets
Back
[data-info$="z"]
Front
If you wanted to select all the elements that have the attribute 'data-info' and end in the letter z, what selector would you use?
Back
selector
Front
selects the element(s) you want to make changes to
Back
cascade algorithm
Front
defines which rule has precedence over the others
Back
value
Front
indicate how you want to change the properties of the selected elements
Back
;
Front
the symbol used to separate each declaration within a declaration block
Back
present a document
Front
means of converting a document into a usable form for your audience. Browsers do this visually.
Back
[data-suv]
Front
Write a selector that will select an element that has the attribute 'data-suv'
Back
attribute-selectors
Front
match one or more elements based on their attributes/attribute values
Back
DOM
Front
represents the document in the computer's memory
Back
declaration
Front
the term for a property/value pair
Back
[data-condition~="fair"]
Front
Write a selector that will select any element that has the attribute 'data-condition' and the value contains the word 'fair'
Back
pseudo-classes
Front
match one or more elements that exist in a certain state, such as an element that is being hovered over by a mouse pointer
Back
whitespace
Front
actual spaces, tabs, and newlines
Back
CSS
Front
Describes how elements should be rendered on screen, on paper, in speech, or on other media
Back
properties
Front
human-readable identifiers that indicate which stylistic features you want to change
Back
document
Front
Usually a text file structured using a markup language (HTML, SVG, XML)
Back
[data-info*="connor"]
Front
If you had the element <p data-info="connor"> and <p data-info="cam"> and you wanted to select any element that contains "connor" what selector would you use? Only substring selectors may be used.
Back
rule
Front
the selector plus the declaration block
Back
[data-suv="audi"]
Front
Write a selector that will select all elements that have the attribute 'data-suv' and value 'audi'
Back
pseudo-elements
Front
match one or more parts of content that are in a certain position in relation to an element, for example the first word of each paragraph
Back
simple-selectors
Front
match one of more elements based on element type, class, or id