Forum Moderators: open
Does anyone have an idea why this is doing this?
Here is what my code looks like:
<FORM name="myForm" action="example.php" method=post>
Your Name :<br />
<select name="name" class="inputbox" size="1"><option value="">:: Select Below ::<option value="name1">Name1<option value="name2">Name2<option value="name3">Name3</option></select>
<br /><br />
Your Idea :<br />
<textarea name="idea" rows="5" cols="51"></textarea><br />
<INPUT type="submit" value="Please Submit Here" name="submit"> <INPUT class="button" type="reset" value="Reset" name="reset">
</FORM></center>
It happens when you give a value for a button that tends to be longer than maybe ten characters... You should also notice if you put padding on the
input it doesn't display the correct width of padding. Thankfully, there's an easy fix:
overflow: visible; When you add that CSS property value to your button, it will behave properly (and you don't need to have it in an IE-only section either, this does not affect standards-compliant browsers negatively.)