Currently, I am working with jQuery Mobile to develop a straightforward Golf Score Card App. To calculate the total at the end of a form submission, I've implemented the following code.
<input id="total" type="text" name="total" value="" readonly="readonly" />
<p><input type="button" value="=" onclick="total.value=getTotalB(this.form)" />
<p><input type="reset" onClick="reset()" value="-"/>
</form>
I would like the input type="button" and reset buttons to be around 10px in size. Although I've attempted using "width" in the style attribute, I'm unsure about the most efficient way to adjust the size of these buttons. Could someone provide guidance on how to accomplish this?