0

我在 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>
4

1 回答 1

1

如果不知道您的样式表是什么样子,很难回答这个问题。甚至您的字体/字体大小也会在一定程度上影响这一点。例如,只是将您的代码粘贴到一个空白的 html 文件中并在浏览器对齐中显示它有点不对劲,因为它使用 Times 作为我的字体,但是如果我将正文字体更改为 arial,它会排列得很好。仅仅剪掉这个没有关联的 css 就很难像你需要的那样清楚地回答这个问题。

于 2013-10-18T15:32:32.643 回答