ant-design/components/layout/demo/basic.md

90 lines
1.7 KiB
Markdown
Raw Normal View History

---
order: 0
title:
zh-CN: 基本结构
en-US: Basic Structure
---
## zh-CN
典型的页面布局。
## en-US
Classic page layouts.
2019-05-07 14:57:32 +08:00
```jsx
import { Layout } from 'antd';
2018-06-27 15:55:04 +08:00
2019-05-07 14:57:32 +08:00
const { Header, Footer, Sider, Content } = Layout;
ReactDOM.render(
2017-02-23 11:45:48 +08:00
<div>
<Layout>
2017-02-23 11:45:48 +08:00
<Header>Header</Header>
<Content>Content</Content>
2017-02-23 11:45:48 +08:00
<Footer>Footer</Footer>
</Layout>
<Layout>
2017-02-23 11:45:48 +08:00
<Header>Header</Header>
<Layout>
<Sider>Sider</Sider>
<Content>Content</Content>
</Layout>
<Footer>Footer</Footer>
</Layout>
2017-02-23 11:45:48 +08:00
<Layout>
<Header>Header</Header>
2017-02-23 11:45:48 +08:00
<Layout>
<Content>Content</Content>
<Sider>Sider</Sider>
</Layout>
<Footer>Footer</Footer>
2017-02-23 11:45:48 +08:00
</Layout>
<Layout>
<Sider>Sider</Sider>
2017-02-24 16:34:10 +08:00
<Layout>
2017-02-23 11:45:48 +08:00
<Header>Header</Header>
<Content>Content</Content>
<Footer>Footer</Footer>
2017-02-24 16:34:10 +08:00
</Layout>
2017-02-23 11:45:48 +08:00
</Layout>
2018-06-27 15:55:04 +08:00
</div>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```
<style>
#components-layout-demo-basic .code-box-demo {
text-align: center;
}
#components-layout-demo-basic .ant-layout-header,
#components-layout-demo-basic .ant-layout-footer {
background: #7dbcea;
color: #fff;
}
#components-layout-demo-basic .ant-layout-footer {
line-height: 1.5;
}
#components-layout-demo-basic .ant-layout-sider {
background: #3ba0e9;
color: #fff;
line-height: 120px;
}
#components-layout-demo-basic .ant-layout-content {
background: rgba(16, 142, 233, 1);
color: #fff;
min-height: 120px;
line-height: 120px;
}
#components-layout-demo-basic > .code-box-demo > div > .ant-layout {
margin-bottom: 48px;
}
#components-layout-demo-basic > .code-box-demo > div > .ant-layout:last-child {
margin: 0;
}
</style>