div change to textarea in html

div can changed in the style to the textarea

<div id="textarea" contenteditable></div>

the style of the id textarea added  textarea style 

#textarea {
    -moz-appearance: textfield-multiline;
    -webkit-appearance: textarea;
    border: 1px solid gray;
    font: medium -moz-fixed;
    font: -webkit-small-control;
    height: 28px;
    overflow: auto;
    padding: 2px;
    resize: both;
    width: 400px;
}

Leave a Reply

Your email address will not be published. Required fields are marked *