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 に答える