我试图向用户询问他们的生日,但遇到了一些风格问题。
你应该能够从这个http://jsfiddle.net/DjsWv/14/理解我的问题
我开始:
<fieldset data-role="controlgroup" data-type="horizontal">
<legend>Date of Birth:</legend>
<select name="select-choice-month" id="select-choice-month" data-icon="false">
<option >Month</option>
<option value="jan">Jan</option>
</select>
<select name="select-choice-day" id="select-choice-day" data-icon="false">
<option >Day</option>
<option value="1">1</option>
</select>
<select name="select-choice-year" id="select-choice-year">
<option >Year</option>
<option value="2011">2012</option>
</select>
</fieldset>
这里的问题是我不喜欢宽度不满或 100%
我见过的唯一解决方案是使用导航栏,它看起来对我来说并不讨人喜欢......关于如何让这个水平控制组显示为完整/标准宽度的任何想法