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?
|
|
|
|
|
|
|
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. |
||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
another thing about ul li is ; you can use ul as a container which helps you to set Style class
I like this pattern when i use ul
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 |
||
|
|
|
|
If you use div instead, lynx won't be able to render the page in a readable fashion. |
||
|
|
|
|
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. |
||
|
|
|
<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. |
||
|
|
|
|
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. |
|||
|
|
Using Not that |
||
|
|
|
|
If all you care about is getting lists to look a certain way with minimum effort, then this is a no-brainer already: And that's in addition to what everyone else said about semantics. |
||
|
|
|
|
For rendering properly on primitive browsers or mobile devices |
||
|
|
|
|
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. |
||
|
|
