I am not familiar with CSS styling but I want to make a textbox for user to write content on it. Like an email content where you can write your message. Here is a screenshot of my content.
As you can see I can only write my text in the middle of the "box". Is it possible to be able to give flexibility to write anywhere I point my mouse cursor at like a normal email content?
My code:
To:<input type="text" style="font-size: 10pt;" size="30" name="Recipient" ><br><br>
Subject:<input type="text" style="font-size: 10pt" size="70" name="Subject" ><br><br>
Content:<input type="text" style="height: 400px;font-size: 10pt; width: 800px;" name="Content" height="100px" width="100px" ><br><br>
I don't know if textbox is a good idea for this. Because when the text fills up at the end of the box, it keeps going right but I want the text to go to the next line.