1
私は、このHTML構造を持っている:シンプルなCSSのフォームのレイアウト
<form id="signUpForm" action="login.php" method="post">
<h3>Please enter your details below:</h3>
<br />
<p>Name: </p>
<input id="name" name="name" type="text"></input>
<br />
<p>Email: </p>
<input id="email" name="email" type="text"></input>
<br />
<p>Company: </p>
<input id="company" name="company" type="text"></input>
<br />
<p id='required'>* All fields are required</p>
<p>Enquiry Details</p>
<textarea></textarea>
<input id="signUpSubmit" type="submit" value="Send"></input>
</form>
この形式は、HTMLのdiv要素の下にあるが、div要素は、フロートがあります。それに残され、そのdiv要素とフォームが並んで座ります。私がしたいことは、3つのテキスト入力を垂直方向に持っていて、フォームの右上にテキストエリアがあることです。入力とテキストエリアが並んでいますか?
それは意味がありますか?