Files
ClassContent/历届学生/韩一伟/项目开发/上课项目/baidu.html
2024-09-27 02:06:13 +08:00

75 lines
1.7 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>
body {
margin: 0;
}
input {
outline: none;
}
.left {
float: left;
}
.search {
width: 654px;
height: 44px;
margin: 0 auto;
}
.search input {
width: 546px;
box-sizing: border-box;
height: 100%;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border: 2px solid #c4c7ce;
border-right: none;
padding: 0 12px;
padding-right: 50px;
background: url("phone.png");
background-repeat: no-repeat;
background-size: 30px;
background-position: 498px center;
}
.search input:focus {
border: 2px solid #4e6ef2;
border-right: none;
}
.search .sub {
width: 108px;
height: 100%;
background: #4e6ef2;
color: #fff;
text-align: center;
line-height: 43px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
font-size: 17px;
font-weight: 400;
}
</style>
</head>
<body>
<div class="search">
<div>
<input type="text" class="left" />
<div></div>
</div>
<div class="sub left">百度一下</div>
</div>
</body>
</html>