I'm trying to create a simple form, and the width default takes up the entire page width. I seem to recall having this problem before; however, previous posts aren't retained long enough that I can locate the answer.
Rather than hard-code a width to fit, which CSS attribute(s) can I use to "trim" the width of the form?
</style>
<form name="setValues" action="." class="dataEntryForm">
<table>
<tr><td>Start Month:</td><td><select name="month">
<option value=" ">
<option value="Jan">Jan
</select></td></tr>
</table>
</form>
</body>
</html>
Thanks in advance for any help you can provide.