Open In App

HTML | <ol> compact Attribute

Last Updated : 22 Mar, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The HTML <ol> compact attribute is used to define the list should be smaller than the normal by reducing the space between the list items and the indentation of the list. It is a Boolean attribute.
Syntax: 
 

<ol compact>


Note: The HTML <ol> compact attribute is not supported by HTML 5 instead of using this we can use the CSS line-height property.
Example: 
 

html
<!DOCTYPE html> 
<html> 

<head> 
    <title>
        HTML ol compact Attribute
    </title> 
</head> 

<body> 
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
    
    <h3>HTML <ol> compact Attribute</h3> 

    

<p>Compact attribute</p>

 
    <ol compact> 
        <li>HTML</li> 
        <li>CSS</li> 
        <li>JS</li> 
    </ol> 
</body> 

</html>                    

Output: 
 


Supported Browsers: The HTML <ol> compact attribute is not supported by any major browsers.
 


Similar Reads