What's the difference between an id and a class?

前端 未结 17 2528
长情又很酷
长情又很酷 2020-11-22 01:55

What\'s the difference between

and
when it comes to CSS? Is it alright to use
<
17条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-11-22 02:32

    An id must be unique in the whole page.

    A class may apply to many elements.

    Sometimes, it's a good idea to use ids.

    In a page, you usually have one footer, one header...

    Then the footer may be into a div with an id

    and still have a class

提交回复
热议问题