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 the width style attribute, and it is even more difficult across browsers. Finally, file inputs seem impossible to get to the same width cross browser. Are there any good guides or tips for accomplishing this? Perhaps there are some default CSS attributes I should be setting.
|
|
I tested this out in Internet Explorer 7, Firefox 3 and Safari/Google Chrome. I definitely see the problem with Using the Eric Meyer CSS reset script does not help this issue, however if you simply make your As far as the See my full working example below in XHTML 1.0 Strict for a typical form with consistent input widths. Note that this does not use the 100% width trick pointed out by others here because it has the same problem with inconsistent widths. Additionally there are no tables used to render the form as tables should only be used for tabular data and not layout.
|
|||||||
|
|
I usually put them inside a div or table cell (horrors! I know) of the width I want, then set the select and input style:width to 100% so they fill the div / cell they are in. |
||||
|
Other than width, I'd be setting border and margin too, these may or may not influence your controls. Something like this may help:
Ron has a good idea too. |
|||||
|
|
I found that if you set select and input element border and padding to 0, they are same width. (Tested on Chrome 14, Firefox 7.0.1, Opera 11.51, IE 9) Putting 1px border/padding on select and input elements makes input element 2 pixels wider. For example:
|
||||
|
|
|
Do you start your CSS files with some base settings? It may be useful to turn padding and margin off on all elements. I haven't tested to see if this could be affecting select / input elements. Here's an example CSS Reset from Eric Meyer: http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/ |
|||
|
|
|
File inputs can be fundamentally different across browsers and definitely don't allow much in the way of customization, which can be annoying, but I also understand why that is from a security perspective. For example, try changing the text of the "browse" button that appears on most browsers, or compare the file input on Safari to other browsers... |
|||
|
|
|
I don't think Ron's idea works... test case:
This results in the input being some px wider than the select (this is probably OS-dependent). I'm not sure if this could be achieved, even with the +5px trick as the styling of the select seems to be OS (at least windows theme) dependent. |
|||
|
|
|
If you desperately need { width: 100%; } and not specified with widths in pixels, then jQuery is your friend:
-6 pixels works best for me (FF9), edit as you see fit. |
|||
|
|
|
This is because with an <input>, the border and padding is added on to the width (like with most other elements). With a <select>, the border and padding is included in the width, just like in the old IE quirks mode. You can get round this by increasing the width to take account of this:
Or (if you can rely on browser support) you can use the new CSS3 box-sizing property to make them behave consistently, and draw padding and border outside of the element width:
Alternatively, you can set box-sizing to border-box to make the inputs behave like the selects, with padding drawn inside the width of the box. Tested in Chrome, IE8, FF |
|||
|
|