Creating a TEXTAREA
<textarea disable name="html" id="html" cols="30" rows="6">
.entryHolder {
padding-right: 14px;
padding-left: 4px;
}
<textarea>
The tag is textarea
I disable it so no one can type over the content
You have to name it:
name="whatevername"
You have to give it an ID:
id="whateverid"
The cols (columns) command makes the width
The rows command makes the height
.entryHolder {
padding-right: 14px;
padding-left: 4px;
}
<textarea>
The tag is textarea
I disable it so no one can type over the content
You have to name it:
name="whatevername"
You have to give it an ID:
id="whateverid"
The cols (columns) command makes the width
The rows command makes the height