2019-08-10 14:02:51 +08:00
## zh-CN
2021-06-11 08:39:17 +08:00
渲染在当前 dom 里。自定义容器,查看 `getContainer` 。
2019-08-10 14:02:51 +08:00
2022-12-02 22:44:16 +08:00
注意:在 v5 中 `style` 与 `className` 迁移至 Drawer 面板上与 Modal 保持一致,原 `style` 与 `className` 替换为 `rootStyle` 与 `rootClassName` 。
2019-08-10 14:02:51 +08:00
## en-US
2021-06-11 08:39:17 +08:00
Render in current dom. custom container, check `getContainer` .
2019-08-10 14:02:51 +08:00
2022-12-03 19:36:03 +08:00
Note: `style` and `className` props are moved to Drawer panel in v5 which is aligned with Modal component. Original `style` and `className` props are replaced by `rootStyle` and `rootClassName` .
2022-12-02 22:44:16 +08:00
2019-12-25 11:02:45 +08:00
```css
.site-drawer-render-in-current-wrapper {
position: relative;
2020-05-10 17:15:41 +08:00
height: 200px;
2019-12-25 11:02:45 +08:00
padding: 48px;
2020-05-10 17:15:41 +08:00
overflow: hidden;
2019-12-25 11:02:45 +08:00
text-align: center;
background: #fafafa ;
2020-05-10 17:15:41 +08:00
border: 1px solid #ebedf0 ;
border-radius: 2px;
2019-12-25 11:02:45 +08:00
}
```
< style >
2019-12-25 17:43:39 +08:00
[data-theme="dark"] .site-drawer-render-in-current-wrapper {
2019-12-25 11:02:45 +08:00
background: #000 ;
border: 1px solid #303030 ;
}
< / style >