Skip to content

about

本篇主要来看看关于input框的样式问题。 比如我们想要做一个这样的搜索框: 1832670996973223936.png

但现实是:

html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        form{
            /*#font-size: 0;*/
        }
        form input{
            background: #fff;
            font-size: 14px;
            border: 1px solid #e0e0e0;
        }
        input[type=text]{
            width: 300px;
            height: 50px;
        }
        input[type=submit]{
            width: 50px;
            height: 50px;
        }
    </style>
</head>
<body>
<div class="container">
    <form action="#">
        <input type="text" placeholder="用户名">
        <input type="submit">
    </form>
</div>
</body>
<script></script>
</html>

1832670997145190400.png 为什么有缝隙呢?而且两个标签高度还不一致?!