diff --git a/components/table/style/index.less b/components/table/style/index.less index cf717f02a8..85ddc135b2 100644 --- a/components/table/style/index.less +++ b/components/table/style/index.less @@ -165,7 +165,7 @@ display: flex; &-left { - justify-content: start; + justify-content: flex-start; } &-center { @@ -173,7 +173,7 @@ } &-right { - justify-content: end; + justify-content: flex-end; } } diff --git a/components/table/style/rtl.less b/components/table/style/rtl.less index 5e2f7660e0..c8aa6c0448 100644 --- a/components/table/style/rtl.less +++ b/components/table/style/rtl.less @@ -55,13 +55,13 @@ &-pagination { &-left { .@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & { - justify-content: end; + justify-content: flex-end; } } &-right { .@{table-wrapepr-cls}.@{table-wrapepr-rtl-cls} & { - justify-content: start; + justify-content: flex-start; } } }