
semantics - when to use UL or OL in html? - Stack Overflow
As the question asks "when to use them", I thought appropriate to offer examples of when, I usually decide to use OL when I want a series of steps, and UL when I want to offer choices: …
Why we always use <ul> to make Navigation why not <ol>?
Nov 21, 2009 · Because semantically ul makes more sense if you don't care about the order of menu items. If you need items to be somehow numbered or when the order has meaning, then …
html - Should I be using nav or ul - Stack Overflow
Mar 7, 2012 · I'm making a navigation menu, should I be using the <nav> element or <ul> element for that? If I use a nav I'll prob need to use a shiv so that it works across …
HTML and CSS: What do the <ul> and <li> tags stand for?
Jul 2, 2012 · ul stands for unordered list. li stands for list item. They are the HTML tags for "bulleted" lists as opposed to "numbered" lists (which are specified by ol for ordered list).
What is the difference between dl, dd, dt and ul li? [closed]
Jan 28, 2014 · UL: Unordered list, created with the UL element. OL An ordered list, created using the OL element, should contain information where order should be emphasized, as in a recipe. …
html - Online Messaging: <ul> vs <ol> vs <div> - Stack Overflow
Apr 12, 2013 · I'm busy writing an online chat, and although it doesn't really matter which I use, since I can style them however I want with CSS, I'd quite like to use the best tag for …
html - Should I use <table> or <ul>? - Stack Overflow
Feb 10, 2010 · This is a very common dilemma in the Web developers head. Actually using table sometimes make it easy to create web pages but makes it really difficult when you try to …
What is the point of span, ul, li, h1 etc elements (and others) when ...
Jun 25, 2010 · UL/LI tells them that it's a bulleted list. etc. A person with a screen reader uses these tags to scan through the page. A person with a screen reader uses these tags to scan …
semântica - Quando uma lista ordenada deve ser, de fato, uma …
Sep 20, 2018 · UL vs OL. UL. UL é um conjunto de elementos onde a ordem não importar para o entendimento do conteúdo, ou seja, independente da ordenação desses elementos o usuário …
html - Form div vs ul how to choose? - Stack Overflow
May 14, 2018 · p vs. ol or ul for form styling. 1. Using UL in place of DIVS - recommended, where to use 1 or the other? 0.