ant-design/components/steps/demo/step-next.md

34 lines
614 B
Markdown
Raw Normal View History

2016-07-21 10:07:30 +08:00
## zh-CN
通常配合内容及按钮使用,表示一个流程的处理进度。
2015-06-25 20:01:20 +08:00
2016-07-21 10:07:30 +08:00
## en-US
Cooperate with the content and buttons, to represent the progress of a process.
2016-07-21 10:07:30 +08:00
2019-05-07 14:57:32 +08:00
```css
.steps-content {
min-height: 200px;
margin-top: 16px;
padding-top: 80px;
text-align: center;
background-color: #fafafa;
border: 1px dashed #e9e9e9;
2019-12-23 20:07:56 +08:00
border-radius: 2px;
}
.steps-action {
margin-top: 24px;
}
2019-05-07 14:57:32 +08:00
```
2019-12-25 22:13:04 +08:00
<style>
[data-theme="dark"] .steps-content {
margin-top: 16px;
border: 1px dashed #303030;
background-color: rgba(255,255,255,0.04);
color: rgba(255,255,255,0.65);
padding-top: 80px;
}
</style>