I want to use the f.label method to create my form element labels, however - i want to have the form element nested inside the label. Is this possible?
This isn't possible using the built-in Rails' label or label_tag helpers because they don't take a block. However, if you want nesting then why wouldn't you just use the HTML element directly?—