I am working on achieving a specific layout using CSS:
https://i.stack.imgur.com/xg7ZA.png
This is the HTML structure I have and it cannot be altered, along with what I have managed to add with CSS. It's almost there but missing something:
.container {
display: flex;
flex-wrap: wrap;
}
.item-1 {
flex: 50%;
}
.item-2 {
flex: 50%;
}
.item-3 {
flex: 100%;
}
<div class="container">
<div class="item-1">
This is an image
</div>
<div class="item-2">
This is a title
</div>
<div class="item-3">
Short desc goes here.
</div>
</div>
Any suggestions on how to resolve this issue? Thank you!