From 394b785dca778b3536ea7dccb5fc46fa13c63c42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=81=8F=E5=8F=B3?= Date: Wed, 4 Mar 2020 19:27:29 +0800 Subject: [PATCH] :bug: Fix Menu bottom margin missing (#21867) close #21864 --- components/style/mixins/clearfix.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/style/mixins/clearfix.less b/components/style/mixins/clearfix.less index fb81664b31..0ed35f9cfd 100644 --- a/components/style/mixins/clearfix.less +++ b/components/style/mixins/clearfix.less @@ -7,7 +7,8 @@ content: ''; } &::after { - display: block; + // https://github.com/ant-design/ant-design/issues/21864 + display: table; clear: both; content: ''; }