2022年10月18日
摘要: 在less中使用calc()要用特定格式 @myWidth: 30px; width: calc(~"100% - @{myWidth}"); width: calc(~"100% - 20px") 阅读全文
posted @ 2022-10-18 23:30 Karle 阅读(53) 评论(0) 推荐(0) 编辑
摘要: 问题 ios设备:点击input,软键盘弹出,页面整体向上偏移 需求 当软键盘弹起,input改变位置并始终贴着软键盘,整体页面不上移动 解决 页面采用flex布局 <div class="flex"> <div class="box"> <div class="head"></div> //标题区 阅读全文
posted @ 2022-10-18 23:26 Karle 阅读(3813) 评论(1) 推荐(1) 编辑
摘要: 问题 页面使用了mui组件,其中有个input标签。在IOS,macOS设备上无法通过点击让input框获得焦点,导致无法输入。 原因 mui.css中有个样式,让页面内容无法被选中,影响了input获取焦点。 具体原因不清楚,安卓设备没有这个影响。 *{ -webkit-user-select:n 阅读全文
posted @ 2022-10-18 22:58 Karle 阅读(77) 评论(0) 推荐(0) 编辑