CSS和所有HTML标签都是正确的,但我的ivu日期选择器图标是错误对齐的。我的VUE js的版本有问题吗?

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

我是vue js的新手,我面临着一个问题,因为datepicker图标未对齐。它高于输入标签。

我使用的是[email protected]

datepicker图标应该对齐

misaligned icon tag

vuejs2
1个回答
1
投票

您可以在css下面使用来修复该对齐问题。

.ivu-date-picker-editor .ivu-input-suffix {
   position: absolute;
   z-index: 11;
   right: 8px;
   margin-top: 7px;
}
© www.soinside.com 2019 - 2024. All rights reserved.