28 lines
673 B
HTML
28 lines
673 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>搜索框</title>
|
|
<style>
|
|
input {
|
|
border-radius: 29px;
|
|
border: 1px solid #f2f2f2;
|
|
background: #f2f2f2;
|
|
font-size: 13px;
|
|
padding: 7px 7px;
|
|
background-image: url("./sss.png");
|
|
background-size: 25px 25px;
|
|
background-repeat: no-repeat;
|
|
background-position: 107px center;
|
|
outline: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<input type="text" placeholder="搜索">
|
|
|
|
</body>
|
|
</html> |