What is DOM element?

前端 未结 10 550
遥遥无期
遥遥无期 2020-12-02 07:32

What is the meaning of DOM element in the following statements?

Statement #1

You can add multiple classes to a single DOM

10条回答
  •  北海茫月
    2020-12-02 08:02

    It's actually Document Object Model. HTML is used to build the DOM which is an in-memory representation of the page (while closely related to HTML, they are not exactly the same thing). Things like CSS and Javascript interact with the DOM.

提交回复
热议问题