Skip to content

Element TextNode

Kameron Brooks edited this page Jan 15, 2019 · 1 revision

TextNode

The text node is an implicit tag and does not need to be written. Anywhere in a document where there is plain text, a text node is created to encapsulate the text.

Example

<div>
   Here is some text.
</div>

Inside of the div tags, there is an implied TextNode that encapsulates the text.