在我的VueJS应用程序中,我正在使用Bootstrap 4构建发票表单,我正在使用此code snippet,到目前为止一切都很好,但问题是,在设计UI样式时,我有点烂此刻:)
这里的问题是底部totals
的部分浮动在左侧而不是右侧。此代码段摘自Bootstrap 3代码段样本,而我正在使用Bootstrap 4,因此可能是问题所在。但是,我尝试使用在线转换器将其转换为Bootstrap 4,但没有一个对我有所帮助。感谢您的帮助。
这是我想向右浮动的代码。
<div class="row clearfix" style="margin-top:20px">
<div class="float-right col-lg-4">
<table class="table table-bordered table-hover" id="tab_logic_total">
<tbody>
<tr>
<th class="text-center">Sub Total</th>
<td class="text-center">
<input type="number" name="sub_total" placeholder="0.00" class="form-control" id="sub_total" readonly>
</td>
</tr>
<tr>
<th class="text-center">Tax</th>
<td class="text-center">
<div class="input-group mb-2 mb-sm-0">
<input type="number" class="form-control" id="tax" placeholder="0">
<div class="input-group-addon">%</div>
</div>
</td>
</tr>
<tr>
<th class="text-center">Tax Amount</th>
<td class="text-center">
<input type="number" name="tax_amount" id="tax_amount" placeholder="0.00" class="form-control" readonly>
</td>
</tr>
<tr>
<th class="text-center">Grand Total</th>
<td class="text-center">
<input type="number" name="total_amount" id="total_amount" placeholder="0.00" class="form-control" readonly>
</td>
</tr>
</tbody>
</table>
</div>
</div>
答案 0 :(得分:1)
您可以使用offset相应地偏移列。由于#tab_logic_total
表的容器占用4列,因此我们剩下8列,因此:
<div class="row clearfix" style="margin-top:20px">
<!-- Notice this line: We are offsetting the table by 8 columns -->
<div class="col-lg-4 offset-lg-8">
<table class="table table-bordered table-hover" id="tab_logic_total">
<tbody>
<tr>
<th class="text-center">Sub Total</th>
<td class="text-center">
目前,我们不再需要float-right
类。无论如何,它对flexbox不会有任何影响。
更多读数: