What is the meaning of DOM element in the following statements?
Statement #1
You can add multiple classes to a single DOM
DOM is a logical model that can be implemented in any convenient manner.It is based on an object structure that closely resembles the structure of the documents it models.
For More Information on DOM : Click Here
See that your statements refer to "elements of the DOM", which are things such as the HTML tags (A, INPUT, etc). Thse statements simply mean that multiple CSS classes may be assigned to one such element.
As per W3C: DOM permits programs and scripts to dynamically access and update the content, structure and style of XML or HTML documents.
DOM is composed of:
cheers
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.