2020-05-11 12:11:15 +08:00
|
|
|
---
|
|
|
|
order: 6
|
|
|
|
title:
|
|
|
|
zh-CN: 自定义样式
|
|
|
|
en-US: Customized style
|
|
|
|
---
|
|
|
|
|
|
|
|
## zh-CN
|
|
|
|
|
|
|
|
使用 `style` 和 `className` 来定义样式。
|
|
|
|
|
|
|
|
## en-US
|
|
|
|
|
|
|
|
The `style` and `className` are available to customize Message.
|
|
|
|
|
|
|
|
```jsx
|
|
|
|
import { message, Button } from 'antd';
|
|
|
|
|
|
|
|
const success = () => {
|
|
|
|
message.success({
|
|
|
|
content: 'This is a prompt message with custom className and style',
|
|
|
|
className: 'custom-class',
|
|
|
|
style: {
|
2020-06-23 10:31:08 +08:00
|
|
|
marginTop: '20vh',
|
2020-05-11 12:11:15 +08:00
|
|
|
},
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2022-04-03 23:27:45 +08:00
|
|
|
export default () => <Button onClick={success}>Customized style</Button>;
|
2020-05-11 12:11:15 +08:00
|
|
|
```
|