mx-auto
bootstrap5.css
bootstrap5.css
.mr-auto,
.mx-auto {
margin-right: auto !important;
}
bootstrap5.css
.ml-auto,
.mx-auto {
margin-left: auto !important;
}
html bootstrap5 Sample
フロートを解除する:clearfix
フロートを解除しない(重なっているので背景色がでない)
右フロート
<div class="w-50 mx-auto bg-danger">
<div class="float-right bg-success">右フロート</div>
</div>
テキストが折り返さないように設定する:text-nowrap
途中で折り返しなし | 折り返しても良い |
---|
<table class="w-50 mx-auto">
<tr>
<th class="text-nowrap">途中で折り返しなし</th>
<td>折り返しても良い</td>
</tr>
</table>