The placeholder text in the third box appears in the middle while i want to be at the top. HTML
<div id="message">
<ul>
<li><h1>Send us a message</h1></li>
<li><input type="text" placeholder="Name"></li>
<li><input type="text" placeholder="Email"></li>
<li><input type="text" style="height:150px;" placeholder="Message"></li>
<li><a href="#">Send</a></li>
</ul>
</div>
Here is JSFiddle
textarea
instead ofinput type="text"
for your message? – Firm