vertical.md 956 Bytes
Newer Older
1 2
---
order: 1
ddcat1115's avatar
ddcat1115 committed
3 4 5
title:
  zh-CN: εž‚η›΄εž‹
  en-US: Vertical
6 7
---

ddcat1115's avatar
ddcat1115 committed
8 9
## zh-CN

10 11
εž‚η›΄εΈƒε±€γ€‚

ddcat1115's avatar
ddcat1115 committed
12 13 14 15
## en-US

Vertical layout.

16
````jsx
nikogu's avatar
nikogu committed
17
import DescriptionList from 'ant-design-pro/lib/DescriptionList';
18 19 20 21

const { Description } = DescriptionList;

ReactDOM.render(
ddcat1115's avatar
ddcat1115 committed
22
  <DescriptionList size="large" title="title" layout="vertical">
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
    <Description term="Firefox">
      A free, open source, cross-platform,
      graphical web browser developed by the
      Mozilla Corporation and hundreds of
      volunteers.
    </Description>
  </DescriptionList>
, mountNode);
````