如何使用CSS选择器居中对齐此元素?

问题描述 投票:-1回答:1

但是,我已经尝试将墨水棒更改为一个圆形,但是我很难将其居中对齐。谁能给我一些建议?

.ant-tabs-ink-bar {
  display: flex;
  //align-items: center;
  //vertical-align: middle;
  width: 8px !important;
  height: 8px;
  line-height: 8px;
  border-radius: 50%;
}

Edit shy-firefly-phex9

css layout flexbox css-selectors antd
1个回答
0
投票

使用您提供的CSS,请尝试此操作

.ant-tabs-ink-bar {
  left: 22.5px;
  width: 8px !important;
  height: 8px;
  line-height: 8px;
  border-radius: 50%;
}
© www.soinside.com 2019 - 2024. All rights reserved.