我有一个带有几个单选按钮的标题,可让用户在不同的列表视图之间进行选择。我无法更改它,因此它排成一行。四个按钮的宽度大于屏幕尺寸,我无法限制每个输入的宽度。
这是该部分的代码:
<div data-role="header" data-theme="b" data-position="fixed" style="height:45px;width:100%;">
<div class="centerFieldset">
<fieldset class="radioBtn" data-role="controlgroup" data-type="horizontal" style="margin-top:1px;">
<label for="flow" >Rivers</label>
<input class="type" type="radio" name="radio" id="flow" value="flow"
onClick="javascript:changeFlow()" <?php print $flow_selected;?> />
<label for="lake" >Lakes</label>
<input class="type" type="radio" name="radio" id="lake" value="lake"
onClick="javascript:changeLakes()" <?php print $lake_selected;?> />
<label for="meteo" >Meteo</label>
<input class="type" type="radio" name="radio" id="meteo" value="meteo"
onClick="javascript:changeMeteo()" <?php print $meteo_selected;?>/>
<label for="tableau" >Tableau</label>
<input class="type" type="radio" name="radio" id="tableau" value="tableau"
onClick="javascript:changeMeteo()" />
</fieldset>
</div>
</div>
CSS文件是:
.centerFieldset { 文本对齐:中心;}
.centerFieldset 字段集 { 显示:内联;左边距:自动;边距右:自动;宽度:100%;}
这是它的样子:
当我尝试将标签宽度限制为 20% 时,我得到了这个: