Can an html element have multiple ids?

前端 未结 18 2531
天命终不由人
天命终不由人 2020-11-22 07:40

I understand that an id must be unique within an HTML/XHTML page.

My question is, for a given element, can I assign multiple ids to it?

18条回答
  •  挽巷
    挽巷 (楼主)
    2020-11-22 08:02

    ID's should be unique, so you should only use a particular ID once on a page. Classes may be used repeatedly.

    check https://www.w3schools.com/html/html_id.asp for more details.

提交回复
热议问题