答案 0 :(得分:2)
你可以把表和div放在一个水平居中的元素中position: relative
并使用绝对定位将div放在外面和右边。
.center {
width: 50%;
margin: auto;
position: relative;
}
table {
background: blue;
width: 100%;
}
.side {
position: absolute;
top: 0; left: 100%;
background: red;
}

<div class="center">
<table>
<tr>
<td>table</td>
</tr>
</table>
<div class="side">div</div>
</div>
&#13;