index.html
<!DOCTYPE html>
<html lang="en"><head>
<!--系统内置 start-->
<script type="text/javascript"></script>
<!--系统内置 end--><meta charset="UTF-8"><title>练习</title><!-- 不要忘记引入index.css --><link rel="stylesheet" href="index.css">
</head><body>
<div class="search"><input placeholder="红米k20">
<div class="right"><div class="giao"></div>
</div>
</div>
</body></html>
index.css
body {margin: 0px;
}
.search{width: 254px;
height: 42px;
background: #FFFFFF;
border: 1px solid #E0E0E0;
box-sizing:border-box;
}
.search>input{font-size: 12px;
line-height: 17px;
color: #AEAEAE;
border:none;
margin-top:13px;
margin-left:20px;
}
.right{float:right;
width: 42px;
height: 42px;
background: #FFFFFF;
border: 1px solid #E0E0E0;
margin-right:-1px;
margin-top:-1px;
box-sizing:border-box;
}
.giao{width: 16px;
height: 16px;margin-top:13px;
margin-left:13px;
background:url(./images/search-normal.png) no-repeat ;}.right:hover{background: #FD6821;
}
.giao:hover{background:url(./images/search-hover.png);
}
运行结果