Given a DIV box of x width and y height in a browser how do you position four smaller images in each corner of the box?
Utilisateur anonyme
Position the DIV box relative. Have the other four child DIV boxes inside that positioned absolute. Then position .box1{ top:0; left: 0; position: absolute;} .box2{ top:0; right: 0; position: absolute;} .box3{ bottom:0; left: 0; position: absolute;} .box4{ bottom:0; right: 0; position: absolute;}