I have a fiddle in which I am trying to make the input box bigger.
I was able to make it bigger but for some reasons the writing cursor starts from the middle of a box whereas I want it to start from the extreme top-left of the input box
so that I can write more content in it similar to this.
The CSS which I am using to make the input box bigger is:
input
{
padding: 3px;
width: 320px;
height: 120px;
}
I am not sure what changes do I need to make in my HTML (in the fiddle) and CSS for the writing cursor to start from the extreme left in the input box.