我需要更改分组单选按钮的宽度,但我做不到。我尝试添加style=width:...px
,但它不起作用。
我正在使用 jQuery Mobile 和 Cordova。
我该如何解决?
HTML
<div data-role="fieldcontain" data-inline="true">
<fieldset data-role="controlgroup" data-inline="true">
<legend>Question1:</legend>
<input type="radio" name="radio-choice" id="radio-choice-1" value="choice-1"/>
<label for="radio-choice-1">OK</label>
<input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2"/>
<label for="radio-choice-2">KO</label>
<input type="radio" name="radio-choice" id="radio-choice-3" value="choice-3"/>
<label for="radio-choice-3">N.A.</label>
<input type="text" name="name" id="basic" value=""/>
</fieldset>
</div>