I want to build a website that is a \"dress up\" game where you can click on different accessories and they will layer on top of each other.
Because it\'s a little d
Using a combination of css properties you can achieve what you're after.
To position the accessories in the correct place you can set the position to absolute and use absolute co-ordinates to specify their position.
To set the order in which they display you can use the z-index property to "stack" them up.
Check out:
http://www.html.net/tutorials/css/lesson15.php
For some detailed info on it.