Mark Wilson I am the creator of TopXML. I am available for international and local (Australia) contracts. I am a Solution Architect/Business Analyst. I have worked in IT in several countries (NZ, Australia, South Africa, UK) building and training teams for government and very large non-governmental organizations. I am ex-Microsoft Consulting Services. I wrote the first book on Microsoft XML published in 2000 called XML Programming with VB and ASP. Most recently I have been building tools for the SEO industry. Ask me for a 37 point SEO health-checkup for your website.
First posted :
03/24/2008
Times viewed :
1091
The <textarea> Tag (XHTML Reference)
Introduction
As the name of the tag already says, this is a tag, which
defines a textarea. It basically just a single input text control with a
multiple lines. With the attribute cols you can define how many columns it
should contain. The row attribute defines the amount of available rows of the
textarea. With defining this attribute you are basically defining the height of
the textarea. Remember that these attributes only define the display height of
the textarea, and not the length of the characters entered in the textarea,
which is unlimited.
Example
<textarea rows="5" cols="30">
Default text can be defined within the tags.
</textarea>
Output
Attributes
Name:
Description:
accesskey
Defines an alphabet for the keyboard shortcut. You can use
ALT + alphabet.
cols
Defines the amount of characters in one line.
disabled
This is an empty attribute and disables the control.
name
Defines the name of the control.
readonly
This is an empty attribute and defines that the control is
only readable.
rows
Defines the rows of the textarea.
tabindex
Defines the number of the index. The lowest number will be
jumped first and highest later.