Browser issue with ASP.net standard control button
2 answers
You can apply CSS styles to the input element to ignore any browser / operating system views.
Here's a simple example, this should appear on your element head
:
<style type="text/css">
#btn { border: solid 1px #693ace; background-color: #cecece; color: #ffffff; }
</style>
And the HTML button:
<input id="btn" type="button" value="Styled button" />
This site contains some good examples.
+1
a source to share