If you need a multi-line input field, you should use the textarea element.
<li> <textarea placeholder="Message"></textarea> </li>
Then you can use the style, but you like to use the textarea selector:
#message input, #message textarea { width: 250px; height: 40px; padding: 10px; } #message li input[type=text], #message li textarea { border-radius: 5px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border: none; } #message li textarea { height: 150px; resize: none; }
JSFiddle demo .
James donnelly
source share