You are not logged in.
Hello All,
I have check boxes around 46. I want to arrange these check boxes 5 in a row i.e. first five checkbox should come and then next five should come below the first row and so on. Currently by default it shows each check boxes one below the other. Please let me know what option value i should pass while creating the multiple check boxes element.
Regards,
Ash
Offline
Hi ashinaidu,
you could do this with float: left on the checkboxes, assuming <label><input type="checkbox" />my label</label> where the <label> is float left or display: inline with a fixed with and it's in a containing block level element (like a div) that's the width of the 5 labels.
good luck!
Offline