色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

css搜索框美化樣式

謝彥文2年前10瀏覽0評論

搜索框是網頁中最常見的元素之一,不僅是方便用戶搜索所需內容的工具,也是網頁設計中的重要組成部分。為了讓搜索框更加美觀和易于使用,我們可以通過CSS技術來對其樣式進行美化和定制。

.search-box {
position: relative;
display: inline-block;
width: 300px;
height: 36px;
}
.search-input {
width: 100%;
height: 100%;
padding: 8px;
font-size: 16px;
border: none;
border-radius: 20px;
background-color: #f1f1f1;
}
.search-input:focus {
outline: none;
box-shadow: 0 0 10px #ccc;
}
.search-button {
position: absolute;
top: 0;
right: 0;
width: 44px;
height: 100%;
color: #fff;
font-size: 16px;
text-align: center;
border-radius: 20px;
background-color: #0088cc;
cursor: pointer;
}

上述代碼即為一個簡單的搜索框美化樣式,其中通過設置盒模型屬性、邊框樣式、圓角設置以及背景色和陰影等方法,使搜索框變得更加現代時尚和易于交互。此外,我們還可以根據實際需求增加一些其他的定制效果,例如懸浮居中提示詞匯、搜索歷史記錄、聯想搜索等功能,來提升搜索框的整體用戶體驗。