zhengwei1949 / myblog

个人博客
10 stars 6 forks source link

乐淘表单布局 #146

Open zhengwei1949 opened 5 years ago

zhengwei1949 commented 5 years ago
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
    <style>
    *{
        box-sizing: border-box;
    }
    .search{
        width: 92%;
        position: relative;
        margin:0 auto;
    }
    .search input[type="text"]{
        outline: none;
        width:100%;
        height: 30px;
        padding: 4px;
        border: 1px solid #069;
    }
    .search input[type="button"]{
        width: 80px;
        height: 30px;
        background: #069;
        border:none;
        color: #fff;
        right:0;
        top:0;
        position:absolute;
        font-size:14px;
    }
    </style>
</head>
<body>
    <div class="search">
        <input type="text"  placeholder="aaa">
        <input type="button" value="搜索">
    </div>
</body>
</html>