テーブルを含むコンテンツを 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>
ここで私が間違っていることを誰かが教えてくれたら、とても感謝します。