html - Text box that gets longer as you type -


<div class="container">    <form action="/html/tags/html_form_tag_action.cfm" method="post">      <div>        <input type="text" id="text" name="text_name" class="mytext" placeholder="comments" style="height:100px"/>      </div>    </form>  </div>

i want create text box has set size type in text box, box can longer not wider ie on facebook or twitter post, type instead of text getting hidden on left hand side whole box becomes longer

i have attached code have

(also side note, how can comment placeholder move top of text box)

thanks in advance

this how it:

.mytext {    word-break: break-word; } 

here jsfiddle demo


Comments

Popular posts from this blog

javascript - How to process users in one specific order using map o each function? -

java - Two interface have same method name with different return type -

javascript - Linking from page A to a specific iframe on page B -