html - Indenting Labels and Checkboxes, with the checkbox outside the label and long labels -
unfortunately i'm stuck using old program generate forms, can fiddle css. program generates following html:
<input type="checkbox" name="_qstrategy_qv03_cv02" id="_q2_c1" class="mrmultiple" style="" value="v02"> <label for="_q2_c1"> <span class="mrmultipletext" style="">defining finance operating model align , support execution of organisation’s broader strategy. finance operating model description of how finance function’s people, process , technology interacts internally , externally deliver products , services.</span> </label>
the label long , wraps on next line, text on next line directly under checkbox. how can make wrapped text indented?
float elements width specified them
label{float:left;width: 75%;} input[type="checkbox"]{float:left;width:20px}
see fiddle
Comments
Post a Comment