I have a table with two columns, like this:
Firstname: Jeff
Where the first column is a label and the second one is an input. Now I’m setting the width of the label at 180px, but if there I have larger text (one word larger than 180px), it’s not showed completely.
I’ve tried to set in css the width of the labels as ‘auto’, but I don’t want different widths of labels in the same column.
The result shall look like this:
Firstname: Jeff
Enciclopedia: Yes
Town: Tokyo
How can I resolve this with Css?
Thanks a lot,
Jeff
You have to wrap each label-input combination in a element, and then wrap that element in some container. This container should have a
min-width, anddisplay: inline-block;.Then you let all the input items float to the right, and you’re done.
This results in a very simple, clean and semantic markup with eqaully clean and maintainable CSS, and no requirements for JavaScript, jQuery, or other fancy stuff.
You could make something like:
with the css
Here you can see how that looks.
Clearly you can style your form with margins, paddings etc.
And additionally if you want to have a wrapper that’s semantically more accurate, you can use a ordered list. You can then style everything like you want to, and have even a nice additional wrapper (the
<ol>) that you can use without adding semantic garbage.A example would be:
styled by
would result in this view. You can even play around with it on this fiddle: http://jsfiddle.net/ramsesoriginal/b6Taa/
EDIT to show how this adds no markup
With the following html:
and the following CSS:
You get the effect that you want. You can play around with it here. But adding
<fieldsets>with<legend>s isn’t adding unnecessary markup, on the contrary: it helps you to group the inputs. And adding a<ol>is semantically correct too, since the label/input combinations are semantic units and the form is a list of fields that have to be filled in a logical order.Again, you can avoid the fieldsets, the lists, and everything and still achieve the desired effect, but semantically it would make sense to have at least the fieldset with a label..
EDIT2: this is how a “real” registration form with good semantic markup may look like:
and the styling:
I included some additional info, to show you how it would all come together to one logical entity. Similarly you could include errors and whatever else you may want to include. This is just a quick example i threw together, but it’s should show that you can achieve interesting things with this technique. One thing I also changed was that I put the
<ol>directly under the form, so you don’t have to repeat it for every fieldset. I personally find this somehow.. unpleasing, but since you want to have minimal markup, this would work pretty well and would be very accessible. Again, read this article if you haven’t. It provides some great insight in marking up correctly a form.Oh, and the “real-life” example is visible here: http://fiddle.jshell.net/ramsesoriginal/b6Taa/9/show/
And you can play with it here:
http://jsfiddle.net/ramsesoriginal/b6Taa/9/
EDIT: i updated the last example
There was an error in my code. The wrapper element (the
<li>in the second and in the last example, the<label>in the minimal one and the<p>in the first one should have at least 1 pixel margin at the bottom, or else some browsers see the input fields as overlapping and won’t float them correctly. I updated the last example so that it works there, everywhere else you should keep this in mind.