UPDATED EXAMS SCRIPT QUESTIONS AND
ANSWERS SURE A+
✔✔padding - ✔✔In the box model, this is the space between the content and the border
✔✔margin - ✔✔In the box model, this is the space between the border and surrounding
elements
✔✔content, padding, border, and margin - ✔✔Add all of these up to get the full size of
an element in the box model
✔✔element[attribute$=value] - ✔✔This CSS3 selector selects every instance of a
specified element whose specified attribute ends with the specified value
✔✔element[attribute*=value] - ✔✔This CSS3 selector selects every instance of a
specified element whose specified attribute contains the specified substring value
✔✔element[attribute^=value] - ✔✔This CSS3 selector selects every instance of a
specified element whose specified attribute begins with the specified value
, ✔✔element:checked - ✔✔This CSS3 selector selects every checked instance of a
specified element
✔✔element:disabled - ✔✔This CSS3 selector selects every disabled instance of a
specified element
✔✔element:enabled - ✔✔This CSS3 selector selects every enabled instance of a
specified element
✔✔element:first-of-type - ✔✔This CSS3 selector selects every instance of a specified
element that is the first of its parent
✔✔element:last-of-type - ✔✔This CSS3 selector selects every instance of a specified
element that is the last of its parent
✔✔element1~element2 - ✔✔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
✔✔multiple images - ✔✔CSS3 now allows this in the background
✔✔background-clip - ✔✔CSS3 property determining whether the background extends
into the border or not (content, padding, or border)
✔✔background-origin - ✔✔CSS3 property defining the location to which the
background-position property should be relative (content, padding, or border)
✔✔length, percentage, cover, contain - ✔✔CSS3 values used in a background-size
property. Last two are optional. Default is auto.
✔✔rgba - ✔✔Whereas the opacity property applies to an element and its children, you
can use this to specify the opacity of a single element
✔✔@font-face - ✔✔CSS3 rule allowing you to specify custom fonts
✔✔400 - ✔✔This font weight is the same as normal
✔✔700 - ✔✔This font weight is the same as bold
✔✔100-900 - ✔✔Range of font weights
✔✔text-shadow - ✔✔IE9 and earlier do not support this text property
✔✔font-family and src - ✔✔These two CSS3 properties are required by @font-face