I'm trying to do this layout only with pure html/css as in the picture , but can't.
I've spent a lot of time on this and succeeded to do only with table elements. I'm trying to do so with basic DIVs /CSS
<html lang="en">
<style>
table, th, td {
border: 1px solid black;
}
#upleft {
width: 100px;
height: 300px;
background: red;
float: left;
}
#upright {
width: 300px;
height: 200px;
background: blue;
float: left
}
#below {
height: 300px;
width: 400px;
background: green
}
</style>
<body>
<p style="font-size: 1.5em;"> </p>
<p> </p>
<table class="editorDemoTable" style="width: 581px; height: 101px;">
<tbody>
<tr style="height: 49px;">
<td style="width: 619px; height: 49px;">
<p> </p>
<p> </p>
</td>
<td style="width: 423px; height: 49px;"><strong></strong></td>
</tr>
<tr style="height: 230px;">
<td style="width: 19px; height: 230px;">
<div id="target"></div>
</td>
</tr>
</tbody>
</table>
<p></p>
</body>
</html>
Please suggest.
BR,
table, let me know if that looks good.