i want a div with height 50vh and full width. Inside it i need a <ul> element, taht is centered vertically and horizontally in the left half of the div and an <image> that is centered vertically and horizontally in right half of the div. I've tried so many things and can't get it right.
Can anyone help me?
<div style="height:50vh; width:100vw;"> 
    <div style="display:inline-block; height:50vh; width:49vw; vertical-align: middle">
        <ul>
            <!--...-->
        </ul>
    </div>
    <div style="display:inline-block; height:50vh;width:50vw; vertical-align: middle">
        <img src="img/Kundenstrategie/Logos.png" style="width: 40vw;"/>
    </div>
</div>
 
     
    