@charset "utf-8";
/* CSS Document */
body, hr {
    margin: 0;
    padding: 0;
}
#box1{
    background-color: orange;
    width: 150px;
    height: 200px;
    border: 2px solid black;
    /* comportement de type bloc par défaut*/
}
#box2{
    background-color: orange;
    width: 150px;
    height: 200px;
    border: 2px solid black;
    left: 300px;
    top: 250px;
    position: absolute;
    /* La position absolue est définie avec les propriétés left et top */
}
#box3{
    background-color: orange;
    width: 150px;
    height: 200px;
    border: 2px solid black;
    right: 200px;
    top: 200px;
    position: absolute;
}
#box4{
    background-color: orange;
    width: 150px;
    height: 200px;
    border: 2px solid black;
    right: 0px;
    bottom: 0px;
    position: absolute;
}
#box5{
    background-color: orange;
    width: 150px;
    height: 200px;
    border: 2px solid black;
    left: 50px;
    bottom: 50px;
    position: absolute;
}