firstElementChild property

Element? get firstElementChild

The Document.firstElementChild read-only property returns the document's first child Element, or null if there are no child elements.

For HTML documents, this is usually the only child, the root <html> element.

See Element.firstElementChild for the first child element of specific elements within a document.

Implementation

external Element? get firstElementChild;