ant-design/components/badge/demo/no-wrapper.md

39 lines
649 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-12-20 11:06:40 +08:00
order: 1
title:
zh-CN: 独立使用
en-US: Standalone
2016-03-31 09:40:55 +08:00
---
## zh-CN
不包裹任何元素即是独立使用,可自定样式展现。
> 在右上角的 badge 则限定为红色。
## en-US
Used in standalone when children is empty.
2019-05-07 14:57:32 +08:00
```jsx
import { Badge } from 'antd';
ReactDOM.render(
<div>
<Badge count={25} />
2019-05-07 14:57:32 +08:00
<Badge
count={4}
style={{ backgroundColor: '#fff', color: '#999', boxShadow: '0 0 0 1px #d9d9d9 inset' }}
/>
2017-10-16 19:53:46 +08:00
<Badge count={109} style={{ backgroundColor: '#52c41a' }} />
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
```
2018-08-20 15:07:05 +08:00
<style>
.ant-badge-not-a-wrapper:not(.ant-badge-status) {
margin-right: 8px;
}
</style>