mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-15 00:29:12 +08:00
b9a6b7b578
* demo: update demo * add form * clear * add Select * add * fix style * fix style * fix * revert
37 lines
543 B
Markdown
37 lines
543 B
Markdown
## zh-CN
|
|
|
|
滑块左右可以设置图标来表达业务含义。
|
|
|
|
## en-US
|
|
|
|
You can add an icon beside the slider to make it meaningful.
|
|
|
|
```css
|
|
.icon-wrapper {
|
|
position: relative;
|
|
padding: 0px 30px;
|
|
}
|
|
|
|
.icon-wrapper .anticon {
|
|
position: absolute;
|
|
top: -2px;
|
|
width: 16px;
|
|
height: 16px;
|
|
color: rgba(0, 0, 0, 0.25);
|
|
font-size: 16px;
|
|
line-height: 1;
|
|
}
|
|
|
|
.icon-wrapper .icon-wrapper-active {
|
|
color: rgba(0, 0, 0, 0.45);
|
|
}
|
|
|
|
.icon-wrapper .anticon:first-child {
|
|
left: 0;
|
|
}
|
|
|
|
.icon-wrapper .anticon:last-child {
|
|
right: 0;
|
|
}
|
|
```
|