解决input和button错位(不齐)问题

Posted alex-xxc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决input和button错位(不齐)问题相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
        .box{
            width: 300px;
            height: 300px;
            padding: 20px;
            background-color: pink;
            margin: 30px auto;
        }
        input{
            width: 120px;
            height: 20px;
            border: none;
            padding: 5px;
            /*vertical-align: top;*/
            border: 2px solid green;
        }
        button{
            width: 40px;
            height: 34px;
            border: none;
            background-color: green;
            padding: 0 5px;
            /*vertical-align: top;*/
            color: #fff;
        }
    </style>
</head>
<body>
<div class="box">
    <input type="text"><button type="button">查询</button>
</div>
<script type="text/javascript">

</script>
</body>
</html>

上面代码会出现这种效果:

  技术图片

 解决方法:给两个同时加上vertical-align:top;即可,把上面代码的注释去掉即可;

最后;
技术图片

 


以上是关于解决input和button错位(不齐)问题的主要内容,如果未能解决你的问题,请参考以下文章

移动端弹出软键盘导致input光标和点击事件错位问题

ant-design Table组件错位/对不齐

ios11,弹出层内的input框光标错位

input元素相对父级元素错位了?IE7

[BUG]ios中input不回弹,导致fixed布局错位

设置苹果手机input按钮和button按钮颜色显示问题