I have a form in which I would like to be able to control the size of my submit and reset buttons. I have 3 buttons which I would like to all be the same size. This is no problem in IE. I just set my height and width in my style sheet. However, Netscape does not seem to recognize the height/width. It adds a huge amount of padding width to my buttons and they are different sizes depending on what is entered in the value. Does anyone have a solution for this?
My code is as follows:
.subadd { WIDTH: 250px; HEIGHT: 27px; }
...
<input type="submit" name="subadd" class="subadd" value="Save & Enter Additional Information">
<input type="submit" name="subret" class="subadd" value="Save & Return to Main Menu">
<input type="button" name="rtmain" class="subadd" value="Return to Main Menu Without Saving">
My code is as follows:
.subadd { WIDTH: 250px; HEIGHT: 27px; }
...
<input type="submit" name="subadd" class="subadd" value="Save & Enter Additional Information">
<input type="submit" name="subret" class="subadd" value="Save & Return to Main Menu">
<input type="button" name="rtmain" class="subadd" value="Return to Main Menu Without Saving">