I made some research and didn’t find an appropriate answer. I’m wondering if it’s better to keep using li
elements for a products listing or maybe switch to the article
element?
Every product list contains 1 main image, name and price.
I made some research and didn’t find an appropriate answer. I’m wondering if it’s better to keep using li
elements for a products listing or maybe switch to the article
element?
Every product list contains 1 main image, name and price.
From how you describe the product listing (image + name + price), it doesn't seem to fit the description of an article in HTML5:
Ask yourself: Will that content be independent from the rest of the page content? If you take it out of context, will it make sense by itself? If the answer is "No", then you should consider that an
<article>
may not be the most suitable tag.If you have multiple products to display, a styled list (ordered or unordered) seems like the best approach for this. But check some practical cases: how do big companies do it?:
ol
orul
)div
boxes without any type of list.div
for the box, andul
for the name and price)Just keep the
li
elements and add aproduct schema
from http://schema.org for a semantic-markupThis is not a question of either/or.
If using
ul
is appropriate has nothing to do with usingarticle
or not; and if usingarticle
is appropriate has nothing to do with usingul
or not.If each product’s content matches the definition of the
article
element, you should use it.If the list of products matches the definition of the
ul
element, you should use it.Generally speaking, a typical web shop listing some products (or product teasers), with some content/metadata about the product, should use an
article
for each product. Iful
should be used is more opinion-based.