在css中,可以利用“background-color”屬性來設定按鈕背景色,該屬性的作用就是設定元素的背景顏色,只需要給按鈕元素添加“background-color:顏色值;”樣式即可。
本教學操作環境:windows7系統、CSS3&&HTML5版、Dell G3電腦。
css怎麼設定按鈕背景色
在css中,可以利用background-color屬性來設定按鈕的背景色,background-color屬性用於設定元素的背景顏色。
下面我們就透過範例來看一下具體操作,範例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | <!DOCTYPE html>
<html>
<head>
<meta charset= "UTF-8" >
<style>
button{
outline : 0 ;
}
.el-button {
padding : 0 24px ;
border : 1px solid #1E9FFF ;
font-size : 14px ;
color : #1E9FFF ;
line-height : 26px ;
border-radius: 4px ;
cursor : pointer ;
}
</style>
</head>
<body>
<button type= "button" class= "el-button" ><span>按钮</span></button>
</body>
</html>
|
登入後複製
輸出結果:
##此時按鈕的背景顏色是灰色的,下面我們只需要給按鈕元素加上「background-color:顏色值;」樣式就可以設定按鈕的背景色。
範例如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | <!DOCTYPE html>
<html>
<head>
<meta charset= "UTF-8" >
<style>
button{
outline : 0 ;
}
.el-button {
padding : 0 24px ;
border : 1px solid #1E9FFF ;
font-size : 14px ;
color : #1E9FFF ;
line-height : 26px ;
border-radius: 4px ;
cursor : pointer ;
background-color : #ffffff ;
}
</style>
</head>
<body>
<button type= "button" class= "el-button" ><span>按钮</span></button>
</body>
</html>
|
登入後複製
輸出結果:
#此時按鈕背景色為白色。
(學習影片分享:
css影片教學)
以上是css怎樣設定按鈕背景色的詳細內容。更多資訊請關注PHP中文網其他相關文章!