C777 Unit 2: Cascading Style Sheets (CSS) ACTUAL EXAM
PREP 2026-2027\NEWEST VERSION WITH COMPLETE
QUESTIONS AND CORRECT DETAILED ANSWERS \VERIFIED
100% ALREADY GRDAED A+
element[attribute$=value]
Which selector targets every instance of a specified HTML element
whose specified attribute ends with the specified value?
element[attribute*=value]
Which selector targets every instance of a specified HTML element
whose specified attribute contains the specified substring value?
element[attribute^=value]
Which selector targets every instance of a specified HTML element
whose specified attribute begins with the specified value?
element: checked
Which selector targets every checked instance of a specified HTML
element?
1/20
,2/9/26, 3:22 PM C777 Unit 2: Cascading Style Sheets (CSS)
element:disabled
Which selector targets every disabled instance of a specified HTML
element?
element:enabled
Which selector targets every enabled instance of a specified HTML
element?
element:first-of-type
Which selector targets every instance of a specified HTML element that
is the first of its parent?
element:last-of-type
Which selector targets every instance of a specified HTML element that
is the last of its parent?
element1~element2
Which selector targets every instance of element2 that is preceded by
an instance of element1?
2/20
, 2/9/26, 3:22 PM C777 Unit 2: Cascading Style Sheets (CSS)
background
Properties are in this order:
background: bg-color bg-image position/bg-size bg-repeat bg-origin bg-
clip bg-attachment initial|inherit;
Which property allows you to set different background properties in one
declaration?
background-clip
Key values for this property:
border-box - extends behind the border
padding-box - extends to the inside edge of the border
content-box - extends to the edge of the content box
Which property specifies whether the background extends into the
border or not?
background-origin
Key values for this property:
padding-box - from the upper left corner of the padding edge
border-box - from the upper left corner of the border
content-box - from the upper left corner of the content
Which property positions the background-image relative to an element's
border, padding or content?
3/20