El atributo de filas en HTML se usa para especificar el número de líneas de texto visibles para el control, es decir, el número de filas que se mostrarán.
Nota: este atributo solo se aplica en <textarea>.
Sintaxis:
<textarea rows = "value">Text content...</textarea>
Valores de atributo: su valor predeterminado es 2. Contiene un valor numérico que especifica la altura del elemento de área de texto.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>HTML rows Attribute</title> <style> h1, h2 { text-align: center; } </style> </head> <body> <center> <h1 style="color: green;"> GeeksforGeeks </h1> <h2> HTML rows Attribute </h2> <!-- Below Textarea element has rows attribute assigned to 5 --> <textarea rows="5" cols="23"> This paragraph has a number of rows equal to 5. </textarea> </center> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo de filas se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por Vishal Chaudhary 2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA