<label>和.radio-inline </label>之间的换行符

时间:2014-10-21 16:06:40

标签: twitter-bootstrap

当我将<label>置于几个.radio-inline之上时,<label>.radio-inline之间没有换行符(请参阅http://jsfiddle.net/strL4v8r/ )。

<input> s及其<label> s之间看到强制换行的最优雅方法是什么?

1 个答案:

答案 0 :(得分:3)

如果您不介意其他标记:

<br>

Demo

或者,要消除重复标签方案:

<div><strong>Number of choice</strong></div>

Demo

更好的选择可能是使用带有图例的字段集:

<fieldset>
    <legend>Number of choice</legend>
    <label class="radio-inline">
    ...

您必须覆盖默认的Bootstrap样式,但最好是可访问性。

Demo | Demo with styles