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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -