Buscando una alternativa a flex

Estoy usando flex para alinear un texto y dos botones dentro de un div. Este es mi código

#wrapper {
    background-color: gray;
    display: flex;
    padding-left: 90px;
    padding-right: 90px;
}
#left {
    padding-top: 33px;
    padding-bottom: 33px;
    flex: 0 0 65%;
    height: 80px;
    line-height: 44px;
}
#right {
    padding-top: 45px;
    padding-bottom: 45px;
    flex: 1;
}
#button1 {
    height: 70px; 
    width: 70px; 
    margin-right: 20px;
}
#button2 {
    height: 70px; 
    width: 70px;
}
    
<div id="wrapper">
    <div id="left">
        Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard.
    </div>
    <div id="right">
        <input type="button" value="More" id="button1">
        <input type="button" value="Ok" id="button2">
    </div>
</div>

Este código funciona correctamente en la mayoría de los navegadores, pero en algunos otros no se admite flex. ¿Hay algún otro método que pueda usar para lograr el mismo resultado y crear el banner?

Respuestas a la pregunta(3)

Su respuesta a la pregunta