森林
森林
  • 发布:2017-05-12 21:48
  • 更新:2017-05-13 08:00
  • 阅读:1062

单webview,如何固定顶部导航,当输入内容时,键盘会把顶部导航挤走

分类:MUI

单webview,如何固定顶部导航,当输入内容时,键盘会把顶部导航挤走

2017-05-12 21:48 负责人:无 分享
已邀请:
LLgg

LLgg

给顶部的导航外部div添加position: fixed;left:0px;width:100%;属性,让他浮在上面,就不会被键盘挤走了

<div  style="position: fixed;left:0px;width: 100%;">导航</div>

这是我的网站,O(∩_∩)O谢谢支持----->>中旋网ZxlmWeb

森林

森林 (作者)

谢谢你,测试了,不管用,可以更具体一点吗?

LLgg

LLgg

<!DOCTYPE html>  
<html>  
    <head>  
        <meta charset="UTF-8">  
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>  
        <title></title>  
        <style>  
            body{  
                margin:0px;  
            }  
        </style>  
    </head>  
    <body>  
        <div style="background:#f00;width:100%;height:100px;left:0px;position:fixed;">导航</div>  
        <div  style="background:#000;height:200px">内容</div>  
        <div  style="background:#ccc;height:200px">内容</div>  
        <div  style="background:#000;height:200px">内容</div>  
        <div  style="background:#ccc;height:200px">内容</div>  
        <div  style="background:#000;height:200px">内容</div>  
        <div  style="background:#ccc;height:200px">内容</div>  
        <div  style="background:#000;height:200px">内容</div>  
        <div  style="background:#ccc;height:200px">内容</div>  
    </body>  
</html>  
森林

森林 (作者)

谢谢你,在iphone上,当有input输入时,键盘就会挤走顶部导航

该问题目前已经被锁定, 无法添加新回复