1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
/*發噗鈕*/
.submit_img_color {
background: url(圖片網址) no-repeat; /*圖案不重複*/
background-size:contain; /*圖片自動縮放*/
background-color: rgba(255, 255, 255, 0); /*背景色透明*/
color: rgba(255, 255, 255, 0); /*文字透明*/
}

/*發噗鈕:滑鼠移至*/
.submit_img_color:hover {
background: url(圖片網址) no-repeat; /*圖案不重複*/
background-size:contain; /*圖片自動縮放*/
background-color: rgba(255, 255, 255, 0); /*背景色透明*/
color: rgba(255, 255, 255, 0); /*文字透明*/
}