From 90ce32c6a824119e134452bd8b3cbd20d9180178 Mon Sep 17 00:00:00 2001 From: 2betop <2betop.cn@gmail.com> Date: Wed, 29 Jul 2020 13:54:11 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scss/_utilities.scss | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scss/_utilities.scss b/scss/_utilities.scss index 2d059669c..3e1d46668 100644 --- a/scss/_utilities.scss +++ b/scss/_utilities.scss @@ -1458,14 +1458,17 @@ } .hbox { - display: flex; - flex-direction: row; - align-items: flex-start; + display: table; + table-layout: fixed; + border-spacing: 0; width: 100%; height: 100%; & > .col { - flex-grow: 1; + display: table-cell; + vertical-align: top; + height: 100%; + float: none; } }