You mean submit buttons?
Use width and height (inline):
<input type="submit" width="100" height="20"/>
You can use css as well. You just have to define the input.
<input type="submit" id="submitbutton"/>
then the css:
#submitbutton{
width:100px;
height:20px;
}
That's it! Hope that helped.