Question: Which style rule would make the image 50% smaller during a hover?

  1. img#photo:hover {scale: 0.5;}
  2. img#photo:hover {transform: scale(0.5);}
  3. img#photo {hover-scale: 0.5;}
  4. img#photo:hover {size: smaller;}

Answer: The correct answer of the above question is Option B:img#photo:hover {transform: scale(0.5);}