50 lines
1.3 KiB
HTML
50 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>仿照网易严选的搜索</title>
|
|
<link rel="stylesheet" href="./css/clear.css">
|
|
<style>
|
|
.main {
|
|
width: 532px;
|
|
height: 38px;
|
|
}
|
|
.left {
|
|
float: left;
|
|
}
|
|
.main input {
|
|
width: 442px;
|
|
height: 100%;
|
|
border: none;
|
|
border: 1px solid #CC9756;
|
|
box-sizing: border-box;
|
|
border-top-left-radius: 19px;
|
|
border-bottom-left-radius: 19px;
|
|
padding-left: 32px;
|
|
background: url("./img/sss.png");
|
|
background-repeat: no-repeat;
|
|
background-size: 25px;
|
|
background-position: 5px center;
|
|
}
|
|
.search_button {
|
|
width: 90px;
|
|
height: 100%;
|
|
background: #CC9756;
|
|
color: #fff;
|
|
text-align: center;
|
|
line-height: 38px;
|
|
border-top-right-radius: 19px;
|
|
border-bottom-right-radius: 19px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="main">
|
|
<input class="left" type="text" placeholder="搜索">
|
|
<div class="search_button left">搜索</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |