ユーザーがさまざまなリストビューから選択できるようにするいくつかのラジオボタンを備えたヘッダーがあります。私はそれを変更することができないので、それは一行になります。4 つのボタンの幅が画面サイズより大きく、各入力の幅を制限できません。
その部分のコードは次のとおりです。
<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 { text-align: center; }
.centerFieldset フィールドセット { 表示: インライン; マージン左: 自動; マージン右: 自動; 幅:100%; }
これがどのように見えるかです:
ラベルの幅を 20% に制限しようとすると、次のようになります。