Files
ClassContent/历届学生/front-end-team/项目练习/上课项目/简书/search.html
2024-09-27 02:06:13 +08:00

54 lines
1.1 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">
<link rel="stylesheet" href="http://at.alicdn.com/t/font_3233798_ojz2bii4vk.css">
<title>搜索-v2</title>
<style>
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
border: none;
outline: none;
}
.search {
width: 250px;
height: 40px;
position: relative;
}
.search input {
width: 100%;
height: 100%;
background: #999;
border-radius: 30px;
padding-right: 30px;
box-sizing: border-box;
}
.search i {
position: absolute;
right: 8px;
top: 50%;
margin-top: calc(16px / -2);
}
</style>
</head>
<body>
<div class="search">
<input type="text" placeholder="搜索">
<i class="iconfont icon-sousuo"></i>
</div>
</body>
</html>