CSS搜索框可以讓網(wǎng)站擁有更加美觀的用戶界面,增加用戶體驗。下面是一個使用CSS實現(xiàn)的搜索框示例:
<div class="search-box">
<form action="#" method="get">
<input type="text" class="search-text" placeholder="Search">
<button type="submit" class="search-btn">Go</button>
</form>
</div>
<style>
.search-box {
display: flex;
justify-content: center;
margin-top: 20px;
}
.search-text {
width: 300px;
height: 40px;
padding: 10px;
border: none;
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
font-size: 18px;
box-shadow: 0px 0px 5px gray;
outline: none;
}
.search-btn {
height: 40px;
padding: 0 20px;
background-color: #009688;
color: white;
border: none;
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
font-size: 18px;
cursor: pointer;
transition: all 0.3s ease-in-out;
}
.search-btn:hover {
background-color: #00796B;
transform: scale(1.1);
}
</style>
這個示例的搜索框使用了flex布局,使其水平居中。輸入框使用了圓角邊框,并添加了陰影效果,使其看起來更加立體。搜索按鈕使用了過渡效果,鼠標(biāo)移到按鈕上時會略微放大,并更換背景顏色。這些效果可以使搜索框更加美觀,讓用戶更想要使用它來進(jìn)行搜索。
上一篇mysql-5.6.4
下一篇figure在css