Hi I don\'t want an image for my submit button so I have gone with the default submit button but I want to edit its width and height. How do I do that?
That's easy! First, give your button an id such as Then, for height, and width, use CSS code:
id
.myButton { width: 100px; height: 100px; }
You could also do this CSS:
input[type="button"] { width: 100px; height: 100px; }
But that would affect all the buttons on the Page.
Working example - JSfiddle