Buttons hover Effect - Css
hover buttons
Snippet Code
Hover effect for buttons in CSS.
<style type="text/css">
.but{border: 1px solid #006; background: #ccf;}
.but:hover { border: 1px solid #f00;background: #eef;}
</style>
<div align=center>
<input type=text size=5>
<input class='but' type=button value='Submit'>
</div>
Tags