1

I've been having a bit of trouble with a problem that seems as though it should be obvious, but my internet searches yield no results. Essentially, I'm trying to create an image-board like HTML skeleton for a project. However, my text entry box (resized to allow for entrance of more than a few words, doesn't allow for entry of more than one line (hitting enter does not start a new line, and arrow keys don't work either.)Keep in mind that I cannot use javascript or any server side languages. What should I do with this?

The id of the textbox is #postbigger - I heard there was a rows style, but upon trying it got no results. Is there some form of css descriptor I can add? ( This is not a duplicate, as I needed to actually apply the code and remove the resizable effect on )

#postbigger {
  height:100px;
  width:300px;
  font-size:14px;
}

  
<form>
Post:<br><input id="postbigger" type="text"/><br>
Id Code:<br><input type="text"/>
</form>
Chilled_
  • 13
  • 6

1 Answers1

1

Use <textarea>

<textarea rows='6' cols='40'></textarea>
zer00ne
  • 41,936
  • 6
  • 41
  • 68