Open
Description
When I use inline css in an html or jsp file, IntelliJ gives me nice syntax coloring and autocompletion:
Is there a type safe way to do inline css using kotlinx.html other than using a string? Or at least a way to get autocompletion and syntax coloring?
body {
div {
style = "background: yellow;border: solid thin blue"
}
}