createDivInline function
Creates a div
with display: inline-block
.
html
The HTML to parse as content.
Implementation
DivElement createDivInline([String? html]) {
return createDiv(true, html);
}
Creates a div
with display: inline-block
.
html
The HTML to parse as content.
DivElement createDivInline([String? html]) {
return createDiv(true, html);
}