I have an ASP.net button with an image. I am not nor do i want to use an Imagebutton. It is a standard asp.net button. Image loads perfect but:[*]i would like the image to align vertically in the center of thebutton [*]I would like the image to be 5 px from the left edge ofthe buttonis this possible?thanksDamoHTML\[code\]<asp:Button CssClass="Button" ID="btnLogin" runat="server" Text="Login" onclick="btnLogin_Click" />\[/code\]CSS\[code\].Button{ -moz-border-radius: 5px; -webkit-border-radius: 5px; -khtml-border-radius: 5px; border-radius: 5px; text-align:left; padding-left:20px; background-repeat: no-repeat; background-image: url(/assets/img/action.gif);}\[/code\]