我在带有复选框的div上有一个表单,复选框与文本行的关系较低,
让它垂直对齐缺少什么?,谢谢!
<div id="dialog-form2" title="Titulo">
<p class="validateTips">All form fields are required.</p>
<form>
<fieldset>
<label for="name">Your name</label>
<input type="text" name="name" id="name" class="text ui-widget-content ui-corner-all" />
<label for="email">Your email</label>
<input type="text" name="email" id="email" value="" class="text ui-widget-content ui-corner-all" />
<label for="email">Your phone number</label>
<input type="text" name="phone" id="phone" value="" class="text ui-widget-content ui-corner-all" />
<label for="password">Your Member Number</label>
<input type="password" name="password" id="password" value="" class="text ui-widget- content ui-corner-all" />
<br>
Enquiry<br>
<input type="checkbox" name="option1" value="Milk"> I would like to r <br>
<input type="checkbox" name="option2" value="Butter">I need a h <br>
<input type="checkbox" name="option2" value="Butter">Please email me with offer details<br>
<input type="checkbox" name="option2" value="Butter">Please call me to discuss offer<br>
<input type="checkbox" name="option2" value="Butter">Other?<br>
</fieldset>
</form>
</div>
答案 0 :(得分:1)
如果不知道你的样式表是什么样子,很难回答这个问题。甚至你的字体/字体大小也会在一定程度上影响这一点。例如,只是将你的代码粘贴到一个空白的html文件中,然后在浏览器中调整它就会稍微关闭,因为它为我使用了Times的字体,但是如果我将body字体更改为arial,它就会很好。只有这个没有关联css的剪辑使得很难像你可能需要的那样清楚地回答这个问题。