From c10ffb3382b469a1987594cfd1b6f1e7669323ee Mon Sep 17 00:00:00 2001 From: guy Date: Thu, 19 Aug 2021 23:04:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=95=B4=E7=90=86=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/core/wrapper/layout/layout.inline.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/core/wrapper/layout/layout.inline.js b/src/core/wrapper/layout/layout.inline.js index b843d5ed5..d83af8519 100644 --- a/src/core/wrapper/layout/layout.inline.js +++ b/src/core/wrapper/layout/layout.inline.js @@ -43,16 +43,18 @@ BI.InlineLayout = BI.inherit(BI.Layout, { columnSize = null; } } - if (columnSize > 0) { - w.element.width(columnSize < 1 ? ((columnSize * 100).toFixed(1) + "%") : (columnSize / BI.pixRatio + BI.pixUnit)); - } w.element.css({ position: "relative", "vertical-align": o.verticalAlign, + width: "auto", "min-width": "auto", "max-width": "none" }); w.element.addClass("i-item"); + + if (columnSize > 0) { + w.element.width(columnSize < 1 ? ((columnSize * 100).toFixed(1) + "%") : (columnSize / BI.pixRatio + BI.pixUnit)); + } if (columnSize === "fill" || columnSize === "") { var length = o.hgap; var fillCount = 0, autoCount = 0;