右側の3つの入力要素を互いに上に揃えたいと思います。そして左側のテキストエリア。ちょうどこのように:http://cl.ly/Gvzo どうすればそれを機能させることができますか?
<div id="contact">
<form action="php/contact/contactengine.php" method="post">
<fieldset>
<input id="Name" name="Name" placeholder="Enter your full name" type="text">
<input id="Email" name="Email" placeholder="Enter your email address" type="email">
<input type="submit" name="submit" value="Send your message">
<textarea id="message" name="Message" placeholder="What's on your mind?"></textarea>
</fieldset>
</form>
</div>
私のCSS:
コンタクト {
width: 670px;
}
入力{
float:right;
width: 251px;
height: 50px;
padding: 0px 20px 0px 20px;
margin: 0 0 20px 0;
background: #fcfcfc;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border:1px solid #d6d6d6;
box-shadow:inset 0 0 4px #d6d6d6;
-moz-box-shadow-inset: inset 0 0 4px #d6d6d6;
-webkit-box-shadow: inset 0 0 4px #d6d6d6;
font-size: 13px;
font-weight:bold;
color: #2a2a2a;
}
textarea {
float:left;
width: 251px;
height: 170px;
padding: 12px 20px 12px 20px;
margin: 0px;
background: #fcfcfc;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border:1px solid #d6d6d6;
box-shadow:inset 0 0 4px #d6d6d6;
-moz-box-shadow-inset: inset 0 0 4px #d6d6d6;
-webkit-box-shadow: inset 0 0 4px #d6d6d6;
font-size: 13px;
font-weight:bold;
color: #2a2a2a;
resize:none;
}
input [type = submit] {
float:right;
border:none;
font-size:16px;
width: 293px; height: 51px;
float: right;
padding: 7px 20px 10px 10px;
margin:0px;
background: url(../../img/contactsendbutton.png) no-repeat;
cursor: pointer;
color:#fff;
text-shadow:1px 1px 1px #000;
}