Sizing of form elements with CSS
Sizing of form elements shoupld be fairly supported by now. All it takes for width is to include a width ptopert with CSS.
Example:
CSS:
<style>
<!--
.two {width: 200px; }
-->
</style>
HTML:
<form action="">
<input class="two" type="text" value="button text here" />
</form>