We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
问题描述 H5 平台下,使用 placeholder-class 属性设置 top 值后,placeholer 的位置错乱,不符合预期。
复现步骤
<template> <view class="content"> <input class="input" placeholder-class="placeholder" type="text" placeholder="input placeholder" /> </view> </template> <script> export default { data() { return {}; }, methods: {}, onLoad() {} }; </script> <style> .input { border: 1px solid #007AFF; } .placeholder { top: 0; } </style>
运行示例代码后,placeholder 的文字内容向上超出了容器,而非处于top: 0px;的预期位置。
top: 0px;
预期结果 placeholder 的文字位于top: 0px;位置。
实际结果 placeholder 的文字向上超出了容器范围。
系统信息:
补充信息 解决 input 组件默认宽度异常的问题以及文字无法自动垂直居中的问题 中设置了uni-input-placeholder的样式:
uni-input-placeholder
.uni-input-placeholder { top: 50%; transform: translateY(-50%); }
限制了自定义样式去设置 top 值,进而引发了此问题。
实际应用中,此问题出现在引用了 vant-weapp 组件的项目中。vant-weapp 的 input 组件中有如下样式:
.van-field__placeholder { position: absolute; top: 0; right: 0; left: 0; pointer-events: none; color: #969799; color: var(--field-placeholder-text-color, #969799); }
The text was updated successfully, but these errors were encountered:
653398a
zhetengbiji
No branches or pull requests
问题描述
H5 平台下,使用 placeholder-class 属性设置 top 值后,placeholer 的位置错乱,不符合预期。
复现步骤
运行示例代码后,placeholder 的文字内容向上超出了容器,而非处于
top: 0px;
的预期位置。预期结果
placeholder 的文字位于
top: 0px;
位置。实际结果
placeholder 的文字向上超出了容器范围。
系统信息:
补充信息
解决 input 组件默认宽度异常的问题以及文字无法自动垂直居中的问题 中设置了
uni-input-placeholder
的样式:限制了自定义样式去设置 top 值,进而引发了此问题。
实际应用中,此问题出现在引用了 vant-weapp 组件的项目中。vant-weapp 的 input 组件中有如下样式:
The text was updated successfully, but these errors were encountered: