When a button is going to click it should have some movement or it show highlight of button
Please refer below code.
HTML
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <style type="text/css"> .button:hover { font-weight: bold; border: 1px solid yellow; } </style> </head> <body> <form id="form1" runat="server"> <div> <input type="submit" name="ctl02" value="Click" class="button" /> </div> </form> </body> </html>
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.