whileループを使用して、いくつかのグループの人々を別のテーブルに表示しています。
inline-block
を使用すると、margin auto
は機能しません。
私は
ベローが私のコードであるbrownserに、この2つのテーブルの表示インラインとキャンターをしたい:ループ内で自動マージンとインラインブロックを使用する
<table style="display: inline-block; margin: auto;" class="table table-striped table-bordered" >
<thead>
<tr>
<th colspan="2">
manager group 2
</th>
</tr>
<tr>
<th>Manager Name</th>
<th>User Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>Kelvin</td>
<td><a href="admin_edit.php?id=<?php echo $mrow["id"]; ?>" >User Details</a></td>
</tr>
</tbody>
</table>
<table style="display: inline-block; margin: auto;" class="table table-striped table-bordered" >
<thead>
<tr>
<th colspan="2">
manager group 1
</th>
</tr>
<tr>
<th>Manager Name</th>
<th>User Details</th>
</tr>
</thead>
<tbody>
<tr>
<td>James</td>
<td><a href="admin_edit.php?id=<?php echo $mrow["id"]; ?>" >User Details</a></td>
</tr>
</tbody>
</table>
更新してくださいあなたの質問は、PHPとMySQLiの入力ではなく、HTMLとCSSの出力**を表示する:) –
あなたは本当にテーブルをインラインブロックに設定するべきではありません。マージンの問題を超えてここでの最終目標は何ですか?それはあなたが現在求めているものよりもあなたの問題に対してより良い解決策を提供するかもしれないからです。 – scottohara
@ObsidianAgeご迷惑をおかけして申し訳ございません。質問はhtmlとcssに編集されました。 –