Files
ClassContent/历届学生/18课程/class18_2/项目/上课项目/淘宝首页/search.html
2024-09-27 02:06:13 +08:00

66 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>
<style>
body {
margin: 0;
padding: 0;
}
input {
outline: none;
border: none;
}
input::-webkit-input-placeholder {
color: red;
font-size: 20px;
}
input::-moz-placeholder {
/* Mozilla Firefox 19+ */
color: red;
font-size: 20px;
}
input:-moz-placeholder {
/* Mozilla Firefox 4 to 18 */
color: red;
font-size: 20px;
}
input:-ms-input-placeholder {
/* Internet Explorer 10-11 */
color: red;
font-size: 20px;
}
input {
border: 1px solid #666;
width: 200px;
height: 30px;
border-radius: 30px;
background-color: #eee;
background-image: url(./search.png);
background-size: 19px;
background-repeat: no-repeat;
background-position: 174px center;
padding-right: 30px;
box-sizing: border-box;
}
</style>
</head>
<body>
<input type="text" placeholder="搜索">
</body>
</html>