Does anyone know how to make table layout like this?

Does anyone know how to make table layout like this?

Tables are not meant for that kind of stuff. But it's possible using "display:block;" on the td element.
<style>
td{
float:left;
display:block;
box-sizing:border-box;
-webkit-box-sizing:border-box;
background:lightblue;
margin:0 2% 2% 0;
padding:20px 10px;
}
<table width="600" cellpadding="0" cellspacing="0">
<tr>
<td width="75%">Test</td>
<td width="21%">Test</td>
</tr>
<tr>
<td width="21%">Test</td>
<td width="75%">Test</td>
</tr>
</table>
See it in action: https://jsfiddle.net/gvqpb66r/