<div class="container">
<div class="box1">1</div>
<div class="box2">2</div>
<div class="box3">3</div>
</div>
.box1 {
border: 1px solid red;
float: left;
width: 20px;
}
.box2, .box3 {
border: 1px solid green;
width: 100%;
}
If you can help, please take a look at my code on JS Fiddle
I am trying to make box 1 extend the height of both boxes 2 and 3, similar to using rowspan in tables.
My knowledge of divs is not advanced enough to solve this issue, so any assistance would be greatly appreciated!
Thank you!