vote up 3 vote down star

Seems interchangable?

flag

40% accept rate
1  
You may want to accept an answer. – musicfreak Sep 15 at 5:23

9 Answers

vote up 15 vote down

UL means "unordered list". OL means "ordered list".

UL gets you bullet points. OL gets you numbers.

Definitely not interchangable.

link|flag
7  
Well, technically you can change how the list appears with CSS (list-style). But yes, semanticaly, UL should be used for unordered data and OL for ordered. – jimr Jun 24 at 17:42
7  
Of course the default display is a consideration! Not as important as the semantic meaning of a tag, perhaps, but who wants to spend their time changing OL's to have bullet points, and force every developer after you to figure out your bizarre display rules for standard tags? Pedant fail. – Joel Mueller Jun 24 at 18:19
2  
@Ben Blank: It's not. That's what's semantically important. But if you use an ordered list for unordered data, then use CSS to make the ordered list act like an unordered list, you have failed, hard. That was my point. The semantics is what's important, even if CSS can modify the display. The semantics are what will be used for automated analysis, for example, not the CSS. You think Google is going to parse the CSS to find out if your ordered list is actually an unordered one? Ok, maybe the would, but that's Google. :) – Randolpho Jun 24 at 18:28
2  
@Ben Blank: My only objection was to the idea that the default display should have "no bearing" on your choice. It should not be the primary consideration, but to say that the default display doesn't even enter into the picture implies that you intend to contravene the default display in a way that could confuse later developers. – Joel Mueller Jun 24 at 18:59
2  
Ben, I think we must be talking past each other somehow. If the default manner of display for a given tag is of no interest to me, it's probably because I intend to override the default display. If I don't plan on fiddling with the default display, then what the output is going to look like by default will be one of my considerations, in addition to tag semantics - particularly if more than one tag is a valid choice from a semantic point of view. – Joel Mueller Jun 24 at 20:55
show 11 more comments
vote up 11 vote down

One is ordered list (OL), it is for things that have a defined and distinct order. There is a reason behind why they are organized.

The other (UL) is unordered list, which is just a collection of things in no specified order. Their organization is trivial.

link|flag
4  
Yep. What the others don't mention is that the numbers or bullets are just the default formatting. The semantic meaning is the main thing. – Rich Bradshaw Jun 24 at 17:42
1  
list-style: none; – Ian Elliott Jun 24 at 17:46
1  
list-style: none – Barry Brown Jun 24 at 17:47
1  
list-style: none – victor hugo Jun 24 at 18:08
1  
list-style: none; – Joey Robert Jun 24 at 18:32
show 2 more comments
vote up 6 vote down

With OL the order of the data is important and will be displayed (by default) while with UL not. Example:

<p>Tomorrow wi will</p>
<ol>
 <li>Wake up</li>
 <li>Have breakfast</li>
 <li>Go to sleep</li>
</ol>
<p>During breakfast we will eat</p>
<ul>
 <li>Butter</li>
 <li>Spam</li>
 <li>Sweet spam</li>
</ul>
link|flag
vote up 4 vote down

OL:

  1. List item 1
  2. List item 2

UL:

  • List item 1
  • List item 2

OL is ordered list, UL is unordered list

link|flag
For OL,is the number possible to hide? – Shore Jun 24 at 17:43
As mentioned in the other posts you can use css list-style: none; to hide it. Can also use list-style-type to mess with the look. If you're going to downvote leave a reason. – Zach Jun 24 at 17:57
Got it.And what if I want to set the margin between each UL element? – Shore Jun 24 at 18:12
in a simple html page, css, margin-bottom on the li tag could do it – Zach Jun 24 at 18:31
By the way, the left margin on lists is actually a left padding in most browsers. Best to set margin:0; padding:0; if you want to remove it. – DisgruntledGoat Sep 16 at 12:06
vote up 4 vote down

I think it's a sematic issue, as the numbering/bullet points can be changed by CSS.

Ordered lists should be things like instructions, or any sequential information.

Unordered lists should be everything else.

link|flag
1  
Beat me to it. Thanks for bringing up semantics. – Matthew Vines Jun 24 at 17:43
vote up 3 vote down

In math terms (hey, why not?), an <ol> represents a sequence, whereas <ul> represents a set. Rearranging the items in an ordered list changes the list's meaning. Rearranging them in an unordered list does not.

This is a good rule-of-thumb for which type of list to use. If changing the order of the items makes the list incorrect, you want to use <ol>. If the order doesn't matter, use <ul>.

link|flag
vote up 2 vote down

Use OL when you're listing steps that need to be done in a certain order. Use UL when you're listing items in no particular order of importance.

link|flag
vote up 0 vote down

ul means unorded list. It is for lists in whick it doesn't matter what order the list items are in.

ol means ordered list. It is for lists that are numbered or in some way show that they have a specific ordering.

By default ul gets you bullet pointed lists and ol numbered lists, although this can be edited in css.

link|flag
vote up -2 vote down

Haha, so many answers!

When HTML first came out, there were OL and UL, which, as all of the other posters have said, meant Ordered List and Unordered List.

The difference was easy. OLs displayed... a number next to them. Or a roman numeral, or a letter! You could even control whether it used capitalized symbols or lowercase! Cool!

ULs gave you bullets. 3 types of bullets, even - discs (hollow circles), squares (filled squares), circles (filled circles.)

There was no CSS. Beyond these attributes, there wasn't really a way to customize the list formats (and margins and indententations and everything else.) So, this distinction was important.

Nowadays, its all CSS. In fact, the w3 people want you to use styles rather than the html "type" attribute that you used to use. So, using UL vs OL doesn't really matter, if you are one of them newfangled CSS users.

CSS lets you change the bullet type, or opt to use an image, or change the margins/styles/indentations, or not even display a bullet at all.

Edit again: This answer isn't really meant to address the semantic merits of UL vs OL. But technically (you know, at the bits and bytes) the above outlines the differences in behavior.

link|flag
The correct is to make the distinction because you don't know how the user will reach the information. Maybe his browser doesn't support CSS or he's using a screen reader, or whatever. Semantically they are not the same, so you have to distinguish them. – Ore Jun 24 at 18:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.