但是,我已经尝试将墨水棒更改为一个圆形,但是我很难将其居中对齐。谁能给我一些建议?
.ant-tabs-ink-bar {
display: flex;
//align-items: center;
//vertical-align: middle;
width: 8px !important;
height: 8px;
line-height: 8px;
border-radius: 50%;
}
使用您提供的CSS,请尝试此操作
.ant-tabs-ink-bar {
left: 22.5px;
width: 8px !important;
height: 8px;
line-height: 8px;
border-radius: 50%;
}