console
<style>
div{display: flex;}
.main{width:100%;}
.left{width:50%;background:green;}
.right{width:50%; align-items:center;background:blue;}
</style>
方法1(div实现):
<div class="main">
<div class="left">123<br>534<br>534<br>534</div>
<div class="right">666<br>534</div>
</div>
<style>
table{width:100%;border-collapse: collapse;}
td{width:50%;}
</style>
<br>
方法2(table实现):
<table>
<tr>
<td style="background:green;">1<br>34234<br>34234<br>34234</td>
<td style="background:blue;">2<br>666</td>
</tr>
</table>