0
私はドロップダウンボタンを押したいテーブルがあります。私はボタンを中央に置くことができず、私は多くのことを試しました。これを行う方法はありますか?ブートストラップ、テーブル、センタリングボタン
<table class = "table table-hover table-condensed">
<tr>
<th class = "text-center">
Test
</th>
</tr>
<tr>
<td>
<div class="col-md-3 text-left">
<div class="button-group">
<button type="button" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown"><span class="glyphicon glyphicon-cog"></span> <span class="caret"></span></button>
<ul class="dropdown-menu">
<li><a href="#" class="small" data-value="Option1" tabIndex="-1"><input type="checkbox"/> Option1</a></li>
<li><a href="#" class="small" data-value="Option2" tabIndex="-1"><input type="checkbox"/> Option2</a></li>
</ul>
</div>
</div>
</td>
</tr>
</table>
おかげで、Dream_Capを更新スニペットを確認してください。私はそれが右に少し動くが、その中心にないことを見る。どのようにして "Test"テキストのすぐ下に取得できますか? –
投稿を更新しました。申し訳ありません。ありがとう。 –
ブーム、ありがとう! –