Here is the current structure of my code:
<div style="height: 100px;
Width: 200px;"> <!-- Container -->
<div style="float: left;
height: 50px;
Width: 100px;
background-color: red;">
</div>
<div style="float: left;
height: 50px;
Width: 100px;
background-color: blue;">
</div>
<div style="float: right;
height: 50px;
Width: 100px;
background-color: green;">
</div>
</div>
I am facing an issue with the positioning of the elements, as they should be arranged like this:
┌──────┬──────┐
│ red │green │
├──────┼──────┘
│ blue │
└──────┘
Without altering the existing code and adding any new elements, I need to use CSS to achieve the desired layout. How can I manipulate the float property to rearrange the divs accordingly?
Edit: It's important to note that the code cannot include a div with clear.