Open In App

HTML | <pre> width Attribute

The HTML <pre> width Attribute is used to specify the maximum number of characters per line.

Note: The



 width Attribute is not supported by HTML5 

Syntax: 
<pre width="number"> 

Attribute Values:



Example:




<!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>

Output:

Supported Browsers: The HTML <pre> width attribute is not supported by any browsers. CSS property are used instead.

Article Tags :