代码拉取完成,页面将自动刷新
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>搜索框</title>
<style type="text/css">
* {
padding: 0;
margin: 0;
}
.search {
width: 200px;
margin: 100px auto;
display: flex;
/*border: 1px solid red;*/
}
.search input {
float: left; /* //左浮动 */
flex: 4;
height: 30px;
outline: none;
border: 1px solid red;
box-sizing: border-box; /* 盒子模型,怪异IE盒子模型 width=content+border*2+padding*2 */
padding-left: 10px;
}
.search button {
float: right;
flex: 1;
height: 30px;
background-color: red;
color: white;
border-style: none;
outline: none;
}
.search button i {
font-style: normal;
}
.search button:hover {
font-size: 16px;
}
</style>
</head>
<body>
<div class="search">
<input type="text" placeholder="请输入..." name="" id="" value="" />
<button><i>搜索</i></button>
</div>
</body>
</html>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。