85 lines
1.8 KiB
HTML
85 lines
1.8 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>百度搜索条方法1 背景图实现</title>
|
|
<style>
|
|
body,
|
|
ul,
|
|
li,
|
|
p,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
input,
|
|
h6 {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
}
|
|
|
|
input {
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.search {
|
|
width: 654px;
|
|
height: 44px;
|
|
margin: 50px auto;
|
|
}
|
|
|
|
.search .keyword {
|
|
width: 546px;
|
|
height: 100%;
|
|
border: 2px solid #c4c7ce;
|
|
box-sizing: border-box;
|
|
border-radius: 10px 0 0 10px;
|
|
float: left;
|
|
border-right: none;
|
|
background: url("./car.png");
|
|
background-repeat: no-repeat;
|
|
background-size: 24px 20px;
|
|
background-position: 502px center;
|
|
padding-left: 15px;
|
|
font-size: 16px;
|
|
}
|
|
.search .keyword:focus {
|
|
border: 2px solid #4e6ef2;
|
|
border-right: none;
|
|
}
|
|
|
|
.search .submit {
|
|
width: 108px;
|
|
height: 100%;
|
|
background: #4e6ef2;
|
|
color: #fff;
|
|
float: left;
|
|
border-radius: 0 10px 10px 0;
|
|
font-size: 17px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="search">
|
|
<input class="keyword" type="text">
|
|
<input class="submit" type="button" value="百度一下">
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |