3 Star 18 Fork 7

杨得朝/web-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
HTML+CSS 简易搜索框.html 981 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨得朝 提交于 2020-07-08 18:22 . submit
<!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>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yangdechao_admin/web-test.git
git@gitee.com:yangdechao_admin/web-test.git
yangdechao_admin
web-test
web-test
master

搜索帮助