I've been playing around with XHTML programming learning by trial and error and I have a question. It may be a silly question but as I am new, I am clueless.
I made a test page and it has a few samples on it. There is a drop-down box with 3 choices and then underneath it, there is a button.
Purely for aesthetic reasons, I wanted to make both of these the same width.
This is the code i have for the drop-down box.
CODE
<form method="get" style="width: 64px">
<select name="Select1">
<option>Stars</option>
<option>trees</option>
<option>water</option>
</select></form>
And this is the code I have for the button.
CODE
<form method="get" action="http://www.imdb.com/find">
<button name="q" value="Nick Frost"><img src="imdb.gif" width="64" /></button>
</form>
I have checked these together in both Firefox and Internet Explorer but the button is always bigger. I can't really see the error (if there is one.)
Am I missing something?