在網(wǎng)頁(yè)開(kāi)發(fā)中,搜索框是不可或缺的一個(gè)功能。為了美化搜索框的樣式,我們可以使用 CSS 來(lái)進(jìn)行定制。
/* 設(shè)置搜索框的基本樣式 */ .search-box { width: 200px; height: 30px; border: 1px solid #999; border-radius: 5px; padding: 5px; background-color: #fff; box-sizing: border-box; } /* 設(shè)置搜索按鈕的樣式 */ .search-btn { width: 50px; height: 30px; border: none; border-radius: 0 5px 5px 0; background-color: #333; color: #fff; font-size: 14px; } /* 設(shè)置輸入框的樣式 */ .search-input { width: calc(100% - 50px); height: 20px; padding: 5px; margin-bottom: 5px; border: none; font-size: 14px; outline: none; } /* 設(shè)置輸入框獲取焦點(diǎn)時(shí)的樣式 */ .search-input:focus { border: 1px solid #333; }
以上代碼展示了基本的搜索框樣式定制,包括搜索框的大小、邊框、圓角、背景顏色等;搜索按鈕的大小、邊框、背景顏色、字體顏色等;輸入框的大小、邊框、字體大小等以及獲取焦點(diǎn)時(shí)的邊框顏色變化。
使用以上樣式,我們可以快速定制一個(gè)美觀實(shí)用的搜索框。當(dāng)然,還可以根據(jù)需求進(jìn)行其他樣式的更改,例如搜索框的陰影效果、輸入框的圓角等等。皆可根據(jù)需求自行改變相應(yīng) CSS 屬性即可。
上一篇mysql把列中的值替換
下一篇css搜索框的放大鏡