CSS Portal

HTML <ul> Tag

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!

Description

The <ul> tag in HTML is used to create an unordered list, which is a collection of items displayed in a list format where the order of the items is not important. Each item within the list is typically wrapped in an <li> (list item) tag. The <ul> element is often used to present a group of related items, such as navigation menus, feature lists, or collections of points, where the sequence does not convey any specific priority or hierarchy.

Visually, browsers usually render unordered lists with bullet points before each item, although the appearance can be customized using CSS to change the bullet style, indentation, or even replace bullets with images. The structure of a <ul> is hierarchical, meaning it can contain nested <ul> elements inside <li> elements to create sublists, enabling multi-level lists for more complex data representation.

The <ul> element improves semantic HTML by indicating that the enclosed items are part of a group without implying any sequential relationship, which is helpful for accessibility tools such as screen readers. Proper use of <ul> ensures that lists are readable, organized, and easily stylable, making it a fundamental component for structured content on web pages.

Example structure:

<ul>
  <li>Apples</li>
  <li>Oranges</li>
  <li>Bananas</li>
</ul>

This would render as a simple bulleted list of fruits. Nesting another <ul> inside a <li> allows for subcategories:

<ul>
  <li>Fruits
    <ul>
      <li>Apples</li>
      <li>Oranges</li>
    </ul>
  </li>
  <li>Vegetables
    <ul>
      <li>Carrots</li>
      <li>Broccoli</li>
    </ul>
  </li>
</ul>

Properties

Permitted Parents
Any element that accepts flow content
Content
One or more <li> elements
Start/End Tags
Start tag: required, End tag: required

Example

<ul>
<li>Mouse</li>
<li>Cat</li>
<li>Dog</li>
</ul>

Attributes

None

Global Attributes

The <ul> tag also supports the Global Attributes in HTML5

Event Attributes

The <ul> tag also supports the Event Attributes in HTML5

Browser Support

The following information will show you the current browser support for the HTML <ul> tag. Hover over a browser icon to see the version that first introduced support for this HTML tag.

This tag is supported by all modern browsers.
Desktop
Chrome
Edge
Firefox
Opera
Safari
Tablets & Mobile
Chrome Android
Firefox Android
Opera Android
Safari iOS
Samsung Internet
Android WebView
-

Last updated by CSSPortal on: 26th December 2025

If this site has been useful, we’d love your support! Consider buying us a coffee to keep things going strong!