範例一、HTML button 按鈕邊框樣式與顏色
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px #9999FF dashed;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:3px orange double;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px blue none;">
呈現結果<input type="button" value="我是按鈕" style="width:120px;height:40px;border:3px orange double;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px blue none;">
如果光是修改按鈕的邊框顏色與樣式無法滿足網頁整體風格,就順便連按鈕背景顏色一起修改吧!
範例二、連同 button 背景顏色一起修改
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px #9999FF dashed;background-color:pink;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:3px orange double;background-color:pink;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px blue none;background-color:pink;">
呈現結果<input type="button" value="我是按鈕" style="width:120px;height:40px;border:3px orange double;background-color:pink;">
<input type="button" value="我是按鈕" style="width:120px;height:40px;border:2px blue none;background-color:pink;">
看完以上介紹,應該對 HTML button 按鈕的邊框樣式、顏色以及背景圖片有比較深入的認識了,以後不用再使用預設單調的按鈕風格,但還是要注意各瀏覽器所呈現效果差異,特別是 IE 常常會不一樣,如果風格差異太大,就要重新修改。
延伸閱讀