css div id used only once per page

后端 未结 7 542
醉梦人生
醉梦人生 2021-01-14 03:27

In using CSS is it best practice to use a div id only once per page. I know each id has to be unique but could be used multiple times. A discussion with my development tea

7条回答
  •  -上瘾入骨i
    2021-01-14 03:50

    It is physically possible to have duplicate id's per page, but the reason you only want to use one id per page with CSS is because of CSS selectors. Doing a CSS select by id is expected to only return a single DOM item.

提交回复
热议问题