我希望标签和控件的行为如下:
我有这段代码(test the jsFiddle):
HTML:
<div class="container">
<div class="dispInlineLabel" >
<label for="rb_geschlecht-2a">Geschlecht</label>
</div>
<div class="dispInline">
<fieldset data-role="controlgroup" data-type="horizontal">
<input type="radio" name="rb_geschlecht" id="rb_geschlecht-2a" value="0">
<label for="rb_geschlecht-2a">weiblich</label>
<input type="radio" name="rb_geschlecht" id="rb_geschlecht-2b" value="1">
<label for="rb_geschlecht-2b">männlich</label>
</fieldset>
</div>
<div class="clearFloats"></div>
<div class="dispInlineLabel" >
<label for="ti_gebdat">Geburtsdatum</label>
</div>
<div class="dispInline">
<input name="ti_gebdat" id="ti_gebdat" style="text-align: right" type="date" data-theme="d">
</div>
<div class="clearFloats"></div>
</div>
CSS:
.dispInline, .dispInlineLabel{
display: inline-block;
border-bottom-width:0;
}
.dispInlineLabel{
min-width: 120px;
}
.dispInline{
float:right;
}
.clearFloats{
clear:both;
}
此处,控件和标签与预期的行不同或相同。 我的问题是:
有人可以帮忙吗?
答案 0 :(得分:1)