Reputation: 7758
I need to place help text below labels and finding it tricky getting the CSS correct for it.
I have created the jsfiddle below as an example.
The requirements are:
http://jsfiddle.net/brendan_rice/paSR2/2/
Can anyone help please?
Upvotes: 0
Views: 160
Reputation: 450
Please check,
Changes
label {
display: block;
font-size: .9em;
float: left;
clear: left;
width: 52px; <----- /*changed*/
margin: 0px;
padding: 0px
}
Without hard coded width
label {
display: block;
font-size: .9em;
float: left;
clear: left;
margin: 0px;
padding-right: 5px;
}
Upvotes: 1
Reputation: 457
I Made some modifications to your design:
Is this what you are after?
Upvotes: 1