CSS 百度輸入框怎么設置?
/* 設置輸入框的寬度和高度 */ #search { width: 500px; height: 50px; } /* 設置輸入框的邊框樣式和顏色 */ #search input[type=text] { border: 2px solid #ccc; border-radius: 5px; outline: none; } /* 設置輸入框的字體樣式和顏色 */ #search input[type=text] { font-size: 20px; color: #333; font-family: Arial, sans-serif; } /* 設置輸入框的背景色和圖片 */ #search { background-color: #f2f2f2; background-image: url('search-icon.png'); background-repeat: no-repeat; background-position: 10px center; padding-left: 50px; } /* 設置輸入框的聚焦樣式 */ #search input[type=text]:focus { box-shadow: 0 0 6px rgba(0, 0, 255, 0.4); border-color: blue; }
以上代碼可以實現以下效果: