True or false: Constructing the Document Object Model (DOM) requires style information.
True or false: Constructing the Document Object Model (DOM) requires style information.
- True
- False
Correct answer is:
- False
Explanation: DOM construction: Finally, because the HTML markup defines relationships between different tags (some tags are contained within other tags) the created objects are linked in a tree data structure that also captures the parent-child relationships defined in the original markup: the HTML object is a parent of the body object, the body is a parent of the paragraph object, and so on.
Read more here: https://support.google.com/partners/answer/7336282
Comments are closed.