当我将<label>
置于几个.radio-inline
之上时,<label>
和.radio-inline
之间没有换行符(请参阅http://jsfiddle.net/strL4v8r/ )。
在<input>
s及其<label>
s之间看到强制换行的最优雅方法是什么?
答案 0 :(得分:3)
如果您不介意其他标记:
<br>
或者,要消除重复标签方案:
<div><strong>Number of choice</strong></div>
更好的选择可能是使用带有图例的字段集:
<fieldset>
<legend>Number of choice</legend>
<label class="radio-inline">
...
您必须覆盖默认的Bootstrap样式,但最好是可访问性。