Table of Contents

Class HTMLDListElement

Namespace
CSharpToJavaScript.APIs.JS
Assembly
CSharpToJavaScript.dll

The HTMLDListElement interface provides special properties (beyond those of the regular HTMLElement interface it also has available to it by inheritance) for manipulating definition list ({{HtmlElement("dl")}}) elements.

[Value("HTMLDListElement")]
public class HTMLDListElement : HTMLElement
Inheritance
HTMLDListElement
Inherited Members

Remarks

-The HTML element implementing this interface: dl

See also on MDN

Constructors

HTMLDListElement()

public HTMLDListElement()

Properties

Compact

IMPORTANT
Deprecated
The compact property of the HTMLDListElement interface indicates that spacing between list items should be reduced. The exact handling of the compact attribute is browser-specific. Instead of using this property, consider using CSS line-height instead.
[Value("compact")]
public bool Compact { get; set; }

Property Value

bool

A boolean.

Remarks

It reflects the compact attribute of the dl element.

See also on MDN