div css搜尋框效果程式碼例項

antzone發表於2017-04-08

分享一個程式碼例項,它實現了簡單的搜尋框效果。

這個搜尋框是模擬百度的,可以作為初學者的參考之用。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style>
.main {
  height: 30px;
  width: 400px;
  line-height: 30px;
  border: 1px solid #eee;
  display: block;
  float: left;
}
.input {
  height: 28px;
  width: 360px;
  padding: 0;
  float: left;
  border: none;
  outline: none;
  padding-left: 10px;
}
.submit {
  height: 32px;
  width: 100px;
  float: left;
  background: none;
  border: none;
  outline: none;
  background: #2E7EF7;
  color: white;
}
.submit:hover {
  background: #1F71F0;
}
</style>
</head>
<body>
<form method="post">
  <span class="main">
    <input type="text" value="" id="input" class="input">
  </span>
  <input type="submit" value="百度一下" class="submit">
</form>
</body>
</html>

相關文章