Returns the first element that matches the selector by testing the element itself and traversing up through ancestors in element's layers.
up.fragment.closest()
will only match elements in the same layer as
the given element. To match ancestors regardless of layers, use up.element.closest()
.
The element on which to start the search.
The CSS selector to match.