El atributo HTML textarea wrap se utiliza para especificar de qué manera el texto se debe ajustar en un área de texto cuando se envía un formulario .
Sintaxis:
<textarea wrap="soft|hard">
Valores de atributos:
- soft: especifica que el texto presente en el área de texto no se ajustará después de enviar el formulario. Este es el valor predeterminado.
- Duro: especifica que el texto en un área de texto se ajusta al enviar el formulario.
Ejemplo: este ejemplo que ilustra el uso del atributo wrap en el elemento Textarea.
html
<!DOCTYPE html> <html> <head> <title> HTML Textarea wrap attribute </title> </head> <body style="text-align:center"> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML Textarea wrap attribute </h2> <!-- Assigning id to textarea. --> <textarea id="GFG_ID" rows="3" cols="10" name="Geeks" wrap="hard"> This text is wrapped in the text area field. </textarea> <br> <button onclick="myGeeks()"> Submit </button> </body> </html>
Producción:
Navegadores compatibles:
- Google cromo 16
- Borde 12
- firefox 4
- explorador de Internet 6
- Ópera 12.1
- safari de manzana 6
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA