我想当鼠标移动到button上的时候 改变button的背景颜色, 有办法做到吗? 我google了一下没发现办法.
走同样的路,发现不同的人生
Set, #(element ID):hover{background-color:#3333333};That’s it
<style> .button:hover{background:red;} </style> <input type="button" class="button"/>
Set, #(element ID):hover{background-color:#3333333};That’s it