Here is my code
<input type="button" class="refresh" value="refresh">
<style>
.refresh {
-moz-border-radius: 5px 5px 5px 5px;
background: none repeat scroll 0 0 green;
border: medium none navy;
padding: 5px 15px;
cursor:pointer; } .refresh:hover{background: none repeat scroll 0 0 red;} </style>
I want to refresh my page on hover through CSS. Is this possible?