Header Ads Widget

Textarea

பல வரி உரை உள்ளீட பயன்படுத்தப்படுகிறது.

இது வரம்பற்ற எண்ணிக்கையிலான கதாபாத்திரங்களைக் கொண்டிருக்கும் ஒரு நிலையான அகல எழுத்துரு (பொதுவாக கூரியர்) இல் காட்டப்படும்.

HTML Textarea அளவு <cols> மற்றும் <row> பண்புக்கூறு வரையறுக்கப்படுகிறது, அல்லது அது CSS உயரம் மற்றும் அகலம் பண்புகளால் வரையறுக்கப்படுகிறது.

HTML Textarea Example

  1. <textarea rows="9" cols="70">  
  2. Tamil Ict Better textarea tag example with rows and columns.  
  3. </textarea>  


Output:


Supporting Browsers

Elementchrome browser Chromeie browser IEfirefox browser Firefoxopera browser Operasafari browser Safari
<textarea>YesYesYesYesYes

New HTML 5 Textarea Attributes

AttributeDescription

autofocusபக்கம் ஏற்றப்படும் போது உரை பகுதி தானாகவே கவனம் செலுத்தப்பட வேண்டும் என்பதை இது குறிப்பிடுகிறது.
formஇது form சேர்ந்த ஒன்று அல்லது அதற்கு மேற்பட்ட வடிவங்களை குறிப்பிடுகிறது.
maxlengthஇது உரை பகுதியில் அனுமதிக்கப்பட்ட அதிகபட்ச எழுத்துக்களின் எண்ணிக்கையைக் குறிக்கிறது.
placeholderஇது உரை வடிவில் எதிர்பார்க்கப்படும் மதிப்பை விவரிக்கும் ஒரு குறுகிய குறிப்பை குறிப்பிடுகிறது.
requiredஇது textarea பூர்த்தி செய்ய வேண்டும் என்று குறிப்பிடுகிறது.
wrapஇது formல் சமர்ப்பிக்கும் நேரத்திலேயே textarea உள்ள wrapped எவ்வாறு மூடப்பட்டிருக்கும் என்பதை இது குறிப்பிடுகிறது.
                          

HTML Textarea form attribute

The form attribute specifies one or more forms the text area belongs to.

  1. <textarea rows="9" cols="70" name="comment" form="usrform">  
  2. Enter text here...</textarea>  
  3. <p>The text area above is outside the form element, but should still be a part of the form.</p>  
  4.  

Output:


The textarea element above is outside the form , but it is still the part of the form.

Post a Comment

0 Comments