我正在尝试将包含 div 内的表格的内容居中...但我似乎无法弄清楚如何去做...
基本上我想在表格旁边放一些文本,并将表格和文本居中到页面...
我试图集中的内容:
<div style="background: purple; padding: 5px;">
<div>
<table style="float: left;">
<tr>
<th>This</th>
<th>is</th>
<th>a</th>
<th>test</th>
</tr>
</table>
</div>
<span style="background: yellow; margin-left: 15px; float: left;">This is a test</span>
</div>
我试过的:
<div style="background: red; width: 100%; text-align: center">
<div style="background: purple; padding: 5px;">
<div>
<table style="float: left;">
<tr>
<th>This</th>
<th>is</th>
<th>a</th>
<th>test</th>
</tr>
</table>
</div>
<span style="background: yellow; margin-left: 15px; float: left;">This is a test</span>
</div>
</div>
如果有人能够告诉我我在这里做错了什么,那将不胜感激。