html如何在搜索框下面加上贴吧
时间: 2024-05-13 17:19:39 浏览: 24
要在搜索框下面添加贴吧,可以使用HTML和CSS代码来实现。以下是一个简单的示例:
```
<!DOCTYPE html>
<html>
<head>
<title>搜索框和贴吧</title>
<style>
/* 样式 */
.search-container {
display: flex;
align-items: center;
justify-content: center;
height: 100px;
}
.search-box {
width: 300px;
height: 40px;
border: 2px solid #ccc;
border-radius: 20px;
padding: 10px;
}
.search-btn {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 20px;
padding: 10px 20px;
margin-left: 10px;
cursor: pointer;
}
.tieba {
text-align: center;
font-size: 18px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="search-container">
<input type="text" placeholder="请输入搜索内容" class="search-box">
<button class="search-btn">搜索</button>
</div>
<div class="tieba">
<a href="http://tieba.baidu.com">贴吧</a>
</div>
</body>
</html>
```
这个示例中,我们使用了flex布局将搜索框和搜索按钮水平居中对齐,并在搜索框下面添加了一个贴吧链接。你可以根据需要自定义样式。
阅读全文