nav-down - ✔ ✔ Which property specifies where the cursor will navigate to
when the user presses the arrow-down key?
nav-index - ✔ ✔ Which property specifies the tabbing order for an HTML
element?
nav-left - ✔ ✔ Which property specifies where the cursor will navigate to
when the user presses the arrow-left key?
nav-right - ✔ ✔ Which property specifies where the cursor will navigate to
when the user presses the arrow-right key?
nav-up - ✔ ✔ Which property specifies where the cursor will navigate to
when the user presses the arrow-up key?
outline-offset - ✔ ✔ Which property draws an outline beyond the border
edge as specified?
The element will display behind other elements. - ✔ ✔ What happens when
you assign a negative z-index value to an element?
,z-index - ✔ ✔ Which property specifies the stack order of an HTML element?
declaration - ✔ ✔ What consists of a property and a value?
rule
Example: body {background-color: #008080; color: #FFFFFF;} - ✔ ✔ What is a
format instruction that consists of a specified selector and the properties and
values applied to it?
selector - ✔ ✔ What is used to "find" the HTML elements you want to style
with CSS?
property - ✔ ✔ What is an attribute that can be customized to change the
way the element renders in the browser?
value - ✔ ✔ What is a specific selection for a property?
class selector - ✔ ✔ Which selector targets all elements with a specific HTML
class attribute assigned?
id selector - ✔ ✔ Which selector targets one HTML element with a specific id
attribute assigned?
, #myElement {color:blue;} - ✔ ✔ How do you create an ID selector?
div {color:blue;} - ✔ ✔ How do you create a tag selector?
.myElement {color:blue;} - ✔ ✔ How do you create a class selector?
pseudo selector - ✔ ✔ Which selector targets all HTML elements based on a
certain state?
tag selector - ✔ ✔ Which selector targets all HTML elements based on the
element name?
media query - ✔ ✔ What technique checks a client device, or media type,
then limits the scope of the page design to a specific range?
overlay - ✔ ✔ What technique is used to place an HTML element on top of
another HTML element?
External style sheet - ✔ ✔ What is a text file that contains CSS formatting
instructions?
Embedded or Internal style sheet - ✔ ✔ What is styles added to the <head>
of individual an HTML document?