6

How to align text or div item center horizontal with Space with Ant design ?
Here is my code:
import { Space } from 'antd'

<Space direction="horizontal" align="center" style={{width: '100%'}}>
  <span>Hello</span>
</Space>
Tho Bui Ngoc
  • 763
  • 1
  • 11
  • 36

2 Answers2

18

Because Antd uses flex for Space div, you need to use justifyContent. Try this

<Space direction="horizontal" style={{width: '100%', justifyContent: 'center'}}>
Eric
  • 1,279
  • 1
  • 11
  • 8
1

use direction="vertical" with align="center"

import { Space } from 'antd'

<Space direction="vertical" align="center">
  <span>Hello</span>
</Space>