CSS輸入欄和放大鏡按鈕是現(xiàn)代網(wǎng)頁設計中常用的元素,可以讓用戶方便地搜索和獲取所需信息。
/* CSS輸入欄樣式 */ input[type=text] { width: 100%; padding: 12px 20px; margin: 8px 0; box-sizing: border-box; border: 2px solid #ccc; border-radius: 4px; background-color: white; font-size: 16px; } /* 放大鏡按鈕樣式 */ .button { background-color: #4CAF50; border: none; color: white; padding: 12px 16px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; margin: 8px 0; cursor: pointer; border-radius: 4px; } /* 鼠標懸停時,按鈕顏色變亮 */ .button:hover { background-color: #3e8e41; }
以上代碼中,CSS輸入欄樣式設置了輸入欄的寬度、內(nèi)邊距、外邊距、邊框、邊框半徑、背景色和字體大小等屬性,使其看起來美觀、舒適。
放大鏡按鈕的樣式則設置了按鈕的背景色、邊框、字體顏色、內(nèi)邊距、外邊距、字體大小、鼠標樣式和圓角等屬性。當鼠標懸浮在按鈕上時,按鈕的背景顏色會變亮。
這些元素的使用可以為用戶提供更好的網(wǎng)站體驗和便利的操作,同時也是現(xiàn)代網(wǎng)頁設計中不可或缺的一環(huán)。