欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

淘寶導(dǎo)航搜索框css

榮姿康2年前8瀏覽0評論

隨著互聯(lián)網(wǎng)的不斷發(fā)展,電子商務(wù)也逐漸走進(jìn)了我們的生活,淘寶作為我國最大的電商平臺(tái),其導(dǎo)航搜索框的css設(shè)計(jì)也逐漸成為人們關(guān)注的焦點(diǎn)。

/*導(dǎo)航搜索框CSS樣式*/
.search {
position: relative;
height: 32px;
line-height: 32px;
font-size: 14px;
padding: 0 10px 0 34px;
background: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 16px;
transition: all .5s ease;
box-sizing: border-box;
}
/*鼠標(biāo)懸浮效果*/
.search:hover {
border-color: #b3b3b3;
}
/*輸入框*/
.keyword {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
outline: none;
background: none;
color: #333;
}
/*搜索圖標(biāo)*/
.icon-search {
position: absolute;
top: 8px;
left: 10px;
width: 16px;
height: 16px;
background: url(search.png) no-repeat;
background-size: 16px auto;
}

以上是淘寶導(dǎo)航搜索框的css代碼,其中,.search為搜索框整體樣式,.keyword為輸入框樣式,.icon-search為搜索圖標(biāo)樣式。通過對搜索框的樣式設(shè)計(jì),在感覺上為用戶提供了更加舒適的操作體驗(yàn),同時(shí)也能夠提高網(wǎng)站的用戶使用率。