HTML – TextArea Tag

Topics

    • How to create a big text field?
    • How to set the size of textarea?
    • How to disable text area?

    [tab:TextArea]

    TextArea

    Code:

    <form name=myform>
    <textarea name=mytextarea>
    This is a text area ...........
    </textarea>
    </form>

    Result:

    Definition: Here we define the text area using "textarea" tag. What ever you want to be displayed in side textarea should be given in between the textarea's open and close tags as shown in the example. This will take the default size.

    [tab:Setting TextArea Size]

    Setting TextArea Size
    The text area size is determined using the attributes "rows" and "cols". You can change the size of text area by changing the values of rows and cols.

    Example Code:

    <form name=myform>
    <textarea name=mytextarea cols=35 rows=3>
    This is a text area example...........
    </textarea>
    </form>

    Result:

    [tab:Non Editable TextArea]

    Non Editable Text Area

    We can make a test area non selectable (i.e user cant edit the field) using the entry "readonly":

    Example Code:

    <form name=myform>
    <textarea name=mytextarea cols=5 rows=5 readonly>
    This is a text area ...........
    </textarea>
    </form>

    Result:

    [tab:END]

    SOURCE

    LINK

    LANGUAGE
    ENGLISH

    2 thoughts on “HTML – TextArea Tag”

    Comments are closed.