I have this table and another table inside it. I can't get the table on the right to not take up space on the left of it.
Example: the snipped down "hello world 2" is taking up space and pushing the "hello world 3" down. I want that to stay right under the "hello world 1" and still have the table "hello world 2" on the right side of it. How can I do this ?
<table style="b">
<tr>
<td>
Hello world 1
</td>
<td>
<table style="border:1px solid;width:300px; height:300px;float:right;text-align:center ">
<tr>
<td>Hello world 2</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
Hello world 3
</td>
</tr>
</table>
See this picture I want something like this to happen:
In this Image the box represent the Hello world 2 and the lines beside it hello world 3
Here is what I get when I use rowspan
: