What should I do to keep the label of a checkbox on the same line with the checkbox in a rails view containing a form?
Currently the label goes on the next line:
I use pure css/html and this css works good for me.
input { float:left; width:auto; } label{ display:inline; }