64 lines
1.3 KiB
HTML
64 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>搜索</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
.search {
|
|
width: 256px;
|
|
height: 34px;
|
|
border: 1px solid #00CC7E;
|
|
border-radius: 16px;
|
|
font-size: 0;
|
|
}
|
|
|
|
.search input {
|
|
height: 100%;
|
|
margin-left: 17px;
|
|
vertical-align: bottom;
|
|
width: 183px;
|
|
}
|
|
|
|
.search .submit {
|
|
display: inline-block;
|
|
height: 100%;
|
|
width: 56px;
|
|
background: #00CC7E;
|
|
border-radius: 14px;
|
|
text-align: center;
|
|
padding-top: 7px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.search .submit img {
|
|
width: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
<div class="search">
|
|
<input type="text" placeholder="搜索">
|
|
<div class="submit">
|
|
<img src="./ss.png" alt="">
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
|
</html> |