在許多網站中都需要實用到按鈕,一個好看實用的css按鈕即可以給訪客以美感,又可以方便開發者。下面就是一個純css按鈕,需要的可以參考一下。
1、button按鈕(無樣式)
<button>默认按钮</button>
2、button按鈕(有樣式)
HTML程式碼:
<button class="button">按钮</button>
CSS部分:
.button { background-color: #4CAF50; border: none; color: white; padding: 15px 32px; text-align: center; font-size: 16px; cursor: pointer; }
# 這樣就可以做出一個含有樣式的按鈕啦,是不是很簡單?
以上是css怎麼設定按鈕樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!