Element.span constructor - Element - dart:html library (original) (raw)

description

Element.span()

Creates a new <span> element.

This is equivalent to calling new Element.tag('span').

Implementation

factory Element.span() => new Element.tag('span');