I am hoping to find a resource for lining up input elements in a HTML page. I find it difficult to get a select element and a text box to be the same width even when using t
Other than width, I'd be setting border and margin too, these may or may not influence your controls. Something like this may help:
input, select { width: 100px; margin: 0px; border: 1px solid; }
Ron has a good idea too.