HTML ul compact Attribute
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <ul> compact Attribute

❮ HTML <ul> tag

Example

Use of the compact attribute in an unordered HTML list:

<ul compact>
  <li>Coffee</li>
  <li>Tea</li>
  <li>Milk</li>
</ul>
Try it Yourself »

Definition and Usage

The compact attribute is a boolean attribute.

When present, it specifies that the list should render smaller than normal, by reducing the space between lines and the indentation of the list.


Browser Support

Attribute
compact Not supported Not supported Not supported Not supported Not supported

Compatibility Notes

The compact attribute of <ul> is not supported in HTML5. Use CSS instead.

CSS syntax: <ul style="line-height: 80%">

CSS Example: Reduce line-height in a list

In our CSS tutorial you can find more details about the line-height property.


Differences Between HTML and XHTML

In XHTML, attribute minimization is forbidden, and the compact attribute must be defined as <ul compact="compact">.


Syntax

<ul compact>

❮ HTML <ul> tag