Comment régler la boîte dans une autre boîte en utilisant HTML et CSS

#first {
    width: 100px;
    height: 100px;
    background: red;
}
#first #second{
    width: 50%;
    height: 50%;
    background: green;
}
Frightened Fly