Count the Balls

Step 5: By default, the ball is in the top left corner of the box. In CSS, add the following to the ball to position the ball 50 pixels from the left of the page, and 50 pixels from the top of the page:
position: absolute;
left: 50px;
top: 50px;
You will position the ball relative to the box in the next step.
Last step Next step