gpt4 book ai didi

html - Ionic Input 有一些奇怪的内部右填充

转载 作者:太空宇宙 更新时间:2023-11-04 09:37:11 24 4
gpt4 key购买 nike

我有以下代码:

<div class="row no-padding" style="margin-top: 0px;">
<div class="col-67 no-padding">
<label class="item item-input">
<input name="email" ng-model="model.email" placeholder="Email" required type="email">
</label>
</div>
<div class="col no-padding">
<label class="item item-input">
<input name="mobile" ng-model="model.number" placeholder="Mobile" required type="tel">
</label>
</div>
</div>

我得到一个带有奇数内部右填充的输入框: (注意 .com 被截断了,号码应该是 123456789)

有没有办法减少这种情况?

我尝试在输入中使用以下内容但无济于事:

<input name="email" style="padding-right: -25px; ng-model="model.email" placeholder="Email" required type="email">

更新:我正在使用 Ionic Framework

最佳答案

ionic 上的输入项有 24px 的内边距。您可以通过这种方式删除该填充

.item-input input {
padding-right: 0;
}

关于html - Ionic Input 有一些奇怪的内部右填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40239765/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com