TIL the DOM and CSSOM
POSTED ON:
TAGS: css html web-development
The server transfers over bytes to your computer.
The this happens:
Bytes → characters → tokens → nodes → object model
The object model is the DOM & CSSOM.
DOM (Document Object Model) #
It's the tree structure of all your sweet HTML elements.
CSSOM (CSS Object Model) #
It's the tree structure of how you lay out your elements, and then appends CSS on it.
Finally, the render tree combines them together to make that web page!
REFERENCE:
Constructing the Object Model
Related TILs
Tagged: css