HtmlSmallElement
The small HTML element.
using AngleSharp.Html;
namespace AngleSharp.Dom.Html
{
internal sealed class HtmlSmallElement : HtmlElement
{
public HtmlSmallElement(Document owner, string prefix = null)
: base(owner, TagNames.Small, prefix, NodeFlags.HtmlFormatting)
{
}
}
}