格式化jQuery控件组窗口小部件

时间:2016-11-05 11:17:40

标签: jquery css

我有一个jQuery控制组小部件,它由2个单选按钮组成。当我在我的手机上查看此代码时,按钮的Request Feature一半会换到第二行,但Report Bug一半不会,这会导致小部件的底部不均匀(见图)。有没有办法解决这个问题?

<fieldset data-role="controlgroup" data-type="horizontal" class="halves" id="helpType">
    <input type="radio" name="helpSelector" id="helpBug" value="helpBug" />
    <label for="helpBug">Report Bug</label>
    <input type="radio" name="helpSelector" id="helpFeature" value="helpFeature" />
    <label for="helpFeature">Request Feature</label>
</fieldset>
  1. 我并不热衷于在字词之间添加<br />标记,因为它会在较大的屏幕上不必要地换行。
  2. 我不想添加white-space: nowrap;样式,因为我希望显示整个文字,否则我将不得不使用text-overflow:样式。
  3. enter image description here

0 个答案:

没有答案