El atributo HTML <pre> width se utiliza para especificar el número máximo de caracteres por línea.
Nota : El
width Attribute is not supported by HTML5 Syntax:<pre width="number">Attribute Values:
- número: Se utiliza para establecer el número máximo de caracteres.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML pre width Attribute </title> <style> h4 { text-align:center; } </style> </head> <body> <h1 style="color:green;">GeeksforGeeks</h1> <h2>HTML <pre> width Attribute</h2> <pre width="10">GeeksforGeeks A Computer Science Portal For Geeks </pre> </body> </html>
Producción:
Navegadores compatibles: el atributo de ancho HTML <pre> no es compatible con ningún navegador. En su lugar, se utilizan las propiedades CSS.
Publicación traducida automáticamente
Artículo escrito por hritikbhatnagar2182 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA