Odoo 10 - Qweb 对齐 col-xs-n
Odoo 10 - Qweb align col-xs-n
我在 Odoo 10 QWeb PDF 报告的 <div class="col-xs-n">
元素中有一个条形码:
<div class="col-xs-3">
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', o.name, 600, 100)" style="width:300px;height:50px;"/>
</div>
是否有任何 class 可以应用于 <div>
元素以使条形码水平居中?
使用 bootstrap class text-center 如下所示。
<div class="col-xs-3 text-center">
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', o.name, 600, 100)" style="width:300px;height:50px;"/>
</div>
希望对您有所帮助。
尝试添加这些 类..
有原生 bootstrap 类 可用,例如:
class="text-center"
或
class="pagination-centered"</pre>
我在 Odoo 10 QWeb PDF 报告的 <div class="col-xs-n">
元素中有一个条形码:
<div class="col-xs-3">
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', o.name, 600, 100)" style="width:300px;height:50px;"/>
</div>
是否有任何 class 可以应用于 <div>
元素以使条形码水平居中?
使用 bootstrap class text-center 如下所示。
<div class="col-xs-3 text-center">
<img t-att-src="'/report/barcode/?type=%s&value=%s&width=%s&height=%s' % ('Code128', o.name, 600, 100)" style="width:300px;height:50px;"/>
</div>
希望对您有所帮助。
尝试添加这些 类..
有原生 bootstrap 类 可用,例如:
class="text-center"
或
class="pagination-centered"</pre>