Problem: Bouncing Ball Animation
Try to animate a bouncing ball that falls and rebounds with diminishing height using only CSS keyframes.
We'll cover the following...
We'll cover the following...
Problem description
Given an HTML page containing a <div class="bounce-container"><div class="ball"></div></div> structure, write CSS to:
Style
.bounce-containerwith a fixed height and relative positioning.Style
.ballas a circle (e.g.,40px×40px), absolutely positioned horizontally centered at the top. ...