this post was submitted on 07 Aug 2024
11 points (92.3% liked)

Web Development

3413 readers
3 users here now

Welcome to the web development community! This is a place to post, discuss, get help about, etc. anything related to web development

What is web development?

Web development is the process of creating websites or web applications

Rules/Guidelines

Related Communities

Wormhole

Some webdev blogsNot sure what to post in here? Want some web development related things to read?

Heres a couple blogs that have web development related content

CreditsIcon base by Delapouite under CC BY 3.0 with modifications to add a gradient

founded 1 year ago
MODERATORS
 

Hello,

I'm a Sr Dev who mostly has done back-end work but I'm "dangerous enough" in front end frameworks to get things done in my job.

I have another Sr Dev on my team who is ADAMANT on using ul/ol's everywhere. And I mean EVERYWHERE.

Navigation menu items will get done as a list.

Say I have a list of key value pairs or tags describing an item on a page, that's a list. If there are two sections on a page that's also a list. Even forms are built as lists of inputs and buttons. To the point where I'm positive if I told them to recreate the google front page I'm 100% they'd make a ul and a li for the image, another for the box and a separate li for the buttons.

My frustration is that every piece of documentation regarding ordered lists and unordered lists are for literally listings out items as numbered or bulleted lists, not logically grouping things on a page. Also our code is littered with extra css to strip out the bullet points and numbers on a basic li item.

I've worked on several projects and this is the first time I've ever seen lists so overused. Is this normal on some projects? It feels wrong but I don't know the exact terminology to use to explain why, given my inexperience in front end development.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 6 points 1 month ago (4 children)

I would refer to MDN documents on whatever features you are attempting. eg:

The general term you are looking for is 'Semantic HTML' i.e. the tags convey their purpose/meaning.

[–] [email protected] 1 points 1 month ago (2 children)

He mentions how semantically a list is a group of items, I've told him several times it's for a bullet list or a numbered list.

Am I in the wrong here?

[–] [email protected] 3 points 1 month ago

Have a look at the MDN link about the Nav tag. MDN is probably the best source on html standard, aside from reading the W3C html spec.

There you’ll see that the main example is using an unordered list. There is another example explicitly saying you don’t have to use a list in a nav tag.

I’d say your coworker might know what they are talking about.

load more comments (1 replies)
load more comments (2 replies)