Complete Exam Study Guide with 100%
Correct Answers | Expert Graded A+
1. HTML5, CSS, JavaScript - ANSWER The web development trifecta
2. main - ANSWER HTML5 tag defining the main body of a document.
Cannot be the child of the header, nav, article, aside, or footer elements.
3. header and footer - ANSWER These elements can also be included in
article, aside, nav, main, and section elements, not just on the page itself
4. source - ANSWER This element identifies the file(s) to use in a video or
audio element
5. fixed - ANSWER In CSS, this causes the element to remain in the same
position when the page is scrolled
6. inherit - ANSWER In CSS, this causes the element to inherit its parent's
position
7. padding - ANSWER In the box model, this is the space between the content
and the border
8. margin - ANSWER In the box model, this is the space between the border
and surrounding elements
,9. content, padding, border, and margin - ANSWER Add all of these up to get
the full size of an element in the box model
10.element[attribute$=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute ends with the
specified value
11.element[attribute*=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute contains the
specified substring value
12.element[attribute^=value] - ANSWER This CSS3 selector selects every
instance of a specified element whose specified attribute begins with the
specified value
13.element:checked - ANSWER This CSS3 selector selects every checked
instance of a specified element
14.element:disabled - ANSWER This CSS3 selector selects every disabled
instance of a specified element
15.element:enabled - ANSWER This CSS3 selector selects every enabled
instance of a specified element
16.element:first-of-type - ANSWER This CSS3 selector selects every instance
of a specified element that is the first of its parent
17.element:last-of-type - ANSWER This CSS3 selector selects every instance
of a specified element that is the last of its parent
,18.element1~element2 - ANSWER This CSS3 selector selects every instance
of element2 that is preceded by an instance of element1 where both have the
same parent. element2 need not be immediately preceded by element1
19.multiple images - ANSWER CSS3 now allows this in the background
20.background-clip - ANSWER CSS3 property determining whether the
background extends into the border or not (content, padding, or border)
21.background-origin - ANSWER CSS3 property defining the location to
which the background-position property should be relative (content,
padding, or border)
22.style guide - ANSWER A set of standards for the writing and/or design of
documents
23.IE9 - ANSWER This version of IE is the first to support HTML5
24.Add them via JS, make them block via CSS - ANSWER What should you
do to support HTML5 elements in pre-IE9 browsers.
25.selector - ANSWER The term for the part of CSS code that refers to the
element you want to style
26.declaration - ANSWER In CSS, the term for a property and value pair. It
must always end with a semicolon
, 27.rule - ANSWER In CSS, the name for a selector, property and value all
grouped together
28.inheritance - ANSWER The word "cascading" in CSS refers to this concept
29.External, embedded, inline - ANSWER The cascading order of CSS style
sheets, ordered from lowest priority to highest
30.rel, type, href - ANSWER Linking to a CSS file requires these attributes in
the link element
31.style - ANSWER Embedded CSS should be placed in a block defined by
this element
32.style - ANSWER Inline CSS should be placed in an attribute with this name
33.document flow - ANSWER The arrangement of content elements on a page
and how the space is used. Does it fall from top to bottom in stacks, or does
some content float to one side or the other?
34.curly braces - ANSWER These are not used when defining inline CSS
styles
35.clear - ANSWER Use this CSS property to avoid having floating elements
before/after another element
36.static - ANSWER In CSS, the "normal, or default", position of block
elements within a page