Buttons in HTML forms?

  • Thread starter Thread starter tony
  • Start date Start date
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.
 
Back
Top