I have an input type text (also tried with textarea), and I've set its height to like 400px, because I want to make it like a text box. For example like that one that i'm typing in right now. Where the text will wrap on new line and so on. THe problem is that the text only goes in the center and scrolls to the right, instead of wrapping. How do I do it properly?
EDIT: Well i've described it, but if here is the code:
<input type="text" name="message" id="contact_message" pattern=".{10,}">
CSS:
#contact_message {
width: 400px;
height:400px;
}