Skip to content

Latest commit

 

History

History
25 lines (21 loc) · 898 Bytes

File metadata and controls

25 lines (21 loc) · 898 Bytes
load_script_js exercise_path
quiz.js
user/week04/exercises/day04/quick-CSS-refresher

Quick CSS Refresher

Question 1: What is this CSS property doing: color: rgba( 255, 255, 255, 0.5 )?

  • A) Apply a solid red border to an element
  • B) Apply a dotted red border to an element
  • C) Apply a fully transparent red border to an element
  • D) Apply a dotted red border to an element

Question 2: What is this CSS property doing: display: none;?

  • A) Removes an element from the document
  • B) Makes an element transparent
  • C) Makes an element not display any images
  • D) Removes text from the document

Question 3: What is this CSS property doing: border: 1rem dotted rgb(255,0,0)?

  • A) Apply a solid red border to an element
  • B) Apply a dotted red border to an element
  • C) Apply a fully transparent red border to an element
  • D) Apply a dotted red border to an element