$divInline function
Creates a div
node with display: inline-block
.
Implementation
DIVElement $divInline(
{Object? id,
Object? classes,
Object? style,
Map<String, String>? attributes,
Object? content,
bool? hidden,
bool commented = false}) =>
DIVElement(
id: id,
classes: classes,
style: toFlatListOfStrings(['display: inline-block', style],
delimiter: CSS_LIST_DELIMITER),
attributes: attributes,
content: content,
hidden: hidden,
commented: commented);