odoo12:为不同的屏幕尺寸设置不同的图像

时间:2018-12-13 14:51:02

标签: image mobile odoo odoo-12

我是Odoo 12开发的新手,想知道如何为移动和非移动设备设置不同的图像。

在Odoo 10(先前版本)中,我可以使用“ visible-md,visible-lg,visible-sm和visible-xs”类进行控制。但这已被弃用,如何在Odoo 12中执行此操作?

1 个答案:

答案 0 :(得分:0)

Odoo 12使用Bootstrap 4。

因此,请使用以下课程使您的网页具有响应性。

Bootstrap 4网格系统具有五个类:

.col- (extra small devices - screen width less than 576px)
.col-sm- (small devices - screen width equal to or greater than 576px)
.col-md- (medium devices - screen width equal to or greater than 768px)
.col-lg- (large devices - screen width equal to or greater than 992px)
.col-xl- (xlarge devices - screen width equal to or greater than 1200px)