John sets an element's CSS position property to its default value and applies jQuery animations. What is the output?
Answer options
A
Animation failed because the CSS position property set to Fixed
B
Animation failed because the CSS position property set to default value
C
Animation failed because the CSS position property set to static
D
Run the webpage successfully with animated elements
Correct answer: Animation failed because the CSS position property set to default value, Animation failed because the CSS position property set to static
Explanation
jQuery animations require the CSS position property to be 'relative', 'absolute', or 'fixed'. The default value is 'static', which prevents movement-based animations from working, so both options B and C correctly describe the failure.