vote up 6 vote down star

I'm not sure why I need to use ul-li vs simply using divs when listing items. I can make both look exactly the same so where is the functional advantage to creating an unordered list vs lining up divs?

flag

73% accept rate

12 Answers

vote up 50 vote down check

For semantic correctness. HTML has the ability to express lists of things, and it helps the Google robot, screen readers, and all manner of users who don't care solely about the presentation of the site understand your content better.

link|flag
+1. For the visually impaired, it can be helpful to distinguish what's in a list and what's not. Say if you have a list of ingredients in a recipe for example, and the user wants to skip to the instructions or just read the list, you need a list. – Dave Markle Feb 14 at 19:57
+1. zsharp: You say so yourself, "when listing items". You list up things when adding them to a list. – Arve Systad Feb 14 at 21:39
@Arve. My point was to get to the functional difference despite the name "list". Oteherwise I would be following rules i didnt understand. – zsharp Feb 15 at 3:31
vote up 10 vote down

By using semantically correct markup, you are embedding extra information in your text. By using ul/li you are communicating to the consuming application that the information is a list, and not just "something" (who knows what) that is some text inside an arbitrary element.

link|flag
vote up 4 vote down

You should use appropriate tags for the content you want to put inside. This doesn't only mean that ul/li is more appropriate for lists. This also means you have to consider the content of your list and see if its an unordered/ordered or definition list.

Another argument is that when you disable css. The browser will render it's default styling which makes it nicer to look at if alternative browsing devices are used. It also enhances accesibility.

link|flag
vote up 2 vote down

another thing about ul li is ; you can use ul as a container which helps you to set Style class

<ul class="myHebe">
  <li><a href="#">.net</a></li>
  <li><a href="#">.net</a></li>
</ul>

I like this pattern when i use ul

.myHebe{} // container
.myHebe li {} // items
.myHebe li a {} // subitems

Of course it depends on how we want to use it and how we like it. This is the way i like

Hope helps Thanks

link|flag
vote up 2 vote down

If you use div instead, lynx won't be able to render the page in a readable fashion.

link|flag
vote up 1 vote down

I personally like li's for the semantics. When viewing the source you immediately see that you have a list of something if they are wrapped by an li. A div collection provides no semantic meaning, and usually the only semantics to the list are introduced by the css classes like "listItem". Which obviously points to the fact that an li should have been used in the first place.

If you have a loop in your presentation logic, I always favour a li over a div.

link|flag
I agree. I actually saw <div class="ul"><div class="li">...</div></div> once and the most coherent thought I could muster was "WTF??!!??!!!?!" – Jörg W Mittag Feb 14 at 20:43
vote up 3 vote down

<li> means an item in a list and that lets parsers (browsers, search engines, spiders) know that you're listing items. You can use DIV instead of LI but those parsers would never know that those items are being listed and DIV does not really describe anything except that it's a block.

link|flag
vote up 29 vote down

Im not sure why i need to use ul-li vs simply using divs when listing items. I can make both look exactly the same

That there is the key word in your question: "look". Can you also make them type the same for blind people using a Braille reader? Can you make them sound the same for blind people using a text-to-speech synthesizer? Can you still make them look the same for visually impaired people using custom client-side CSS user-stylesheets?

That word, "look", is a very dangerous word – when you use that in relation to HTML, all alarms should go off in your head. HTML is a language for describing the semantic structure of a hypermedia document. A semantic structure doesn't have a "look", it's an abstract concept.

Even if you don't care about all this semantic hocuspocus and you don't give a sh*t about blind people, consider this: Google, Yahoo, MSN and Co. don't have eyes, they don't "look" at your rendered CSS.

link|flag
that's a good way to put it. +1 – jalf Feb 14 at 22:56
i used the term "look" to emphasize the point of getting to the underlying difference. Your philosophy is appreciated nonetheless. – zsharp Feb 15 at 3:27
vote up 1 vote down

Using <li> (where appropriate) reduces the <div> tag soup you so often see in web pages, which helps developers out a lot.

Not that <div>'s are bad, but whenever a tag gets overused (as <div> often is), it dilutes the semantic meaning of the tag to the point of being totally useless. I learnt this recently from a contractor we hired to help with the CSS/UI of our web app, and the difference it has made to the readability/maintainability of the HTML code is very noticeable to me.

link|flag
vote up 4 vote down

If all you care about is getting lists to look a certain way with minimum effort, then this is a no-brainer already: <li> is one character less to type than <div> and its closing tag is optional in HTML.

And that's in addition to what everyone else said about semantics.

link|flag
vote up 2 vote down

For rendering properly on primitive browsers or mobile devices

link|flag
vote up 0 vote down

I'll agree with much of the comments regarding using ul/lis here, but there is question that div tags offer much greater consistency in appearance than ul/li does.

I can't tell you the countless hours I've spent trying to get ul/li to look exactly the same in Firefox/IE/Safari.

link|flag

Your Answer

Get an OpenID
or

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