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

淘寶搜索框css樣式

淘寶是國內(nèi)最大的網(wǎng)購平臺(tái)之一,其中搜索框是用戶最常用的功能之一。為了讓搜索框更美觀且易于使用,淘寶通過CSS樣式來實(shí)現(xiàn)搜索框的樣式。

/* 搜索框樣式 */
.search-form {
position: relative;
height: 40px;
line-height: 40px;
margin: 0 auto;
max-width: 960px;
}
.search-form .search-input {
width: 100%;
height: 100%;
background-color: #fff;
border: none;
border-radius: 20px;
padding: 0 60px 0 20px;
font-size: 14px;
color: #666;
box-sizing: border-box;
outline: none;
transition: all .3s ease-in-out;
}
.search-form .search-input:focus {
box-shadow: 0 0 3px #58a;
}
.search-form .search-submit {
position: absolute;
top: 0;
right: 0;
width: 60px;
height: 100%;
background-color: #ff4500;
color: #fff;
border: none;
border-radius: 0 20px 20px 0;
outline: none;
cursor: pointer;
transition: all .3s ease-in-out;
}
.search-form .search-submit:hover {
background-color: #ff6622;
}

上述CSS代碼中,.search-form為搜索框的父級(jí)容器類名,.search-input為搜索框的輸入框類名,.search-submit為搜索按鈕類名。其中,設(shè)置了搜索框的高度、寬度、邊框、圓角、字體大小、顏色等屬性,同時(shí)給搜索框添加了聚焦效果和搜索按鈕的樣式。

使用上述CSS樣式,淘寶的搜索框不僅美觀,而且易于使用。對(duì)于網(wǎng)站設(shè)計(jì)師來說,可以參考這個(gè)示例為自己的搜索框添加樣式。