【发布时间】:2014-07-01 19:02:14
【问题描述】:
我试图询问用户的生日,但遇到了一些风格问题。
你应该能从这个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%
我看到的唯一解决方案是使用导航栏,这对我来说看起来并不讨人喜欢......关于如何让这个水平控制组显示为完整/标准宽度的任何想法
【问题讨论】:
标签: jquery html css jquery-mobile