*{
    box-sizing: border-box;
}

body{
    background-color: aqua;

}


#padre{
    width: 100%;
    height: 250px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: nowrap;
    justify-content: left;
    padding: 10px;
}

#hijo1{
    width: 20%;
    height: 230px;
    background-color: rgba(0, 255, 4, 0.554);
}

#hijo2{
    width: 100%;
    height: 230px;
    background-color: whitesmoke;
    margin: 0 10px;
}
#hijo3{
    width: 20%;
    height: 230px;
    background-color: orange;
}