css

fun css(init: CssBuilder.() -> Unit): String

Example usage:

val css = css {
"color" value Color(255, 0, 0)
"font-size" value Size(16, SizeUnit.PX)
}

Return

a string representation of CSS entries contained within the builder.