我正在尝试从以下代码中获得所需的输出,但是除chrome之外的其他浏览器都存在div对齐问题。我想只在左侧有空白但不知道如何在循环中使用动态数量的值时使用clear:left。任何人都知道什么是实现对齐输出的最佳方法。
在Firefox和IE 11中对齐的实际输出div-
所需的输出div对齐(相同的代码在Chrome中工作正常):
代码:
<div class="row">
<!-- ko template: { name: 'param-template', foreach: actionParams } -->
<!-- /ko -->
</div>
<script type="text/html" id="param-template">
<div class="form-group col-lg-6" data-bind="validationElement: value">
<label class="required" data-bind="text: displayName"></label>
<input class="form-control" data-bind="value: value" />
<span class="help-block small" data-bind="text: description"></span>
</div>