フィールドセットを水平方向に中央揃えしようとしている非常に基本的なページを作成しました。中に入れようとしまし<centre>
たが、うまくいきませんでした。私は何をすべきか?
これが私のコードです
<div data-role="content">
<div data-role="fieldcontain">
//Its left align, how do i centre align
<fieldset data-role="controlgroup" data-type="horizontal">
<input type="radio" name="radio-choice-b" id="radio-choice-c" value="on" checked="checked" />
<label for="radio-choice-c">Recent</label>
<input type="radio" name="radio-choice-b" id="radio-choice-d" value="off" />
<label for="radio-choice-d">Upcoming</label>
</fieldset>
</div>
<ul data-role="listview">
//my list
</ul>
</div>