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

前端 未结 17 2326
长情又很酷
长情又很酷 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:27

    1) div id is not reusable and should only be applied to one element of HTML while div class can be added to multiple elements.

    2) An id has greater importance if both are applied to the same element and have conflicting styles, the styles of the id will be applied.

    3) Style element always refer a div class by putting a . (dot) in front of their names while div id class is referred by putting a # (hash) in front of their names.

    4) Example :-

    class in