html+css实现百度主页搜索框
时间: 2024-09-29 07:07:17 浏览: 60
html+css+js 高仿百度首页搜索项目
HTML和CSS可以结合使用来创建网页的布局和样式,包括搜索框的设计。下面是一个简单的例子,展示如何使用HTML和CSS来实现一个类似百度主页搜索框的结构:
首先,创建一个基本的HTML结构:
```html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css">
<title>百度搜索样例</title>
</head>
<body>
<div class="search-container">
<input type="text" id="search-input" placeholder="请输入关键词...">
<button type="submit">搜索</button>
</div>
</body>
</html>
```
然后,在`styles.css`文件中添加一些样式:
```css
/* styles.css */
.search-container {
width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
#search-input {
display: block;
width: 100%;
height: 40px;
font-size: 16px;
border: none;
outline: none;
background-color: #f5f5f5;
padding: 10px;
box-sizing: border-box;
}
button[type="submit"] {
background-color: #00BDEF;
color: white;
border: none;
cursor: pointer;
width: 100%;
height: 40px;
text-align: center;
font-size: 16px;
transition: background-color 0.3s ease;
}
button[type="submit"]:hover {
background-color: #0099cc;
}
```
这个示例中的搜索框包含一个文本输入字段和一个提交按钮。CSS负责设置它们的位置、尺寸、颜色和外观。你可以根据实际需求调整样式。
阅读全文