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
问题描述 input组件编译会增加一层父节点,父节点的盒子模型在小程序和H5端表现不一致。
补充信息 [可选] [根据你的分析,出现这个问题的原因可能在哪里?] 把小程序端的父节点改成 view { box-sizing:border-box; } 或者把H5端父节点样式注释, div { /* box-sizing: border-box; */ } 两边表现一致.
The text was updated successfully, but these errors were encountered:
目前会引发排版问题么,请详细描述并提供下测试代码。
Sorry, something went wrong.
我碰到的问题是 H5端会导致在IOS下光标偏上,不能直接使用line-height, 而是采用padding 才能使得光标居中
预计1.9.3修复此问题
fix(h5): 移除system-header.vue中的 div 标签样式,严禁组件内样式影响外部元素样式
27dd0f8
HBuilderX 1.9.3 及 CLI 均已更新
xiaoyucoding
No branches or pull requests
问题描述
input组件编译会增加一层父节点,父节点的盒子模型在小程序和H5端表现不一致。
补充信息
[可选]
[根据你的分析,出现这个问题的原因可能在哪里?]
把小程序端的父节点改成
view {
box-sizing:border-box;
}
或者把H5端父节点样式注释,
div {
/* box-sizing: border-box; */
}
两边表现一致.
The text was updated successfully, but these errors were encountered: