*{
    box-sizing: border-box;
}


body{
    background-color: rgb(255, 255, 255);

}
#padre{
    width: 100%;
    height: 250px;
    background-color: blueviolet;
    display: flex;
    flex-wrap: nowrap;
    /*flex-direction: row-reverse;*/
    padding: 10px;
    /*justify-content: left;*/
}
#hijo1{
    width: 20%;
    height: 230px;
    background-color: lightgoldenrodyellow;
}
#hijo2{
    width: 100%;
    height: 230px;
    background-color: pink;
    margin: 0px 10px;
}
#hijo3{
    width: 20%;
    height: 230px;
    background-color: yellow;
}