Is to possible to change the width of an input type button in html?
Printable View
Is to possible to change the width of an input type button in html?
You can apply whatever styles you want to.
html Code:
<input type="submit" id="somebutton" style="width:200px;height:100px" />
thank you