nodebook/20190926/20190926.html
2019-10-13 14:11:30 +08:00

52 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<style>
* {
margin: 0;
padding: 0;
}
.search {
width: 430px;
height: 42px;
margin: 150px auto;
}
.search .txt {
width: 360px;
height: 42px;
border: 1px #ccc solid;
line-height: 42px;
padding: 0px 5px;
box-sizing: border-box;
font-size: 14px;
color:#282828;
}
.search .btn {
display: inline-block;
width:60px;
height: 42px;
background: skyblue;
line-height: 42px;
text-align: center;
color: #000;
font-size: 14px;
text-decoration: none;
}
</style>
</head>
<body>
<div class="search" id="search">
<input type="text" name="" id="txt" class="txt">
<a href="javascript:;" class="btn">搜索</a>
</div>
<script>
function my$(id) {
return document.getElementById(id);
}
</script>
</body>
</html>