Animation

First, create something to animate:

Your stylesheet should look like this: #outside {
height: 200px;
width: 200px;
background: yellow;
position: relative;
}

#inside {
position: absolute;
top: 0;
left: 0;
height: 10px;
width: 10px;
background: red;
}

and your HTML should look like: <div id="outside">
<div id="inside">
</div>
</div>
Next