KotlinJS 未解决的参考 element.style

KotlinJS unresolved reference element.style

我想更改使用 document.createElement("button") 创建的元素的样式。

我尝试使用:

element.style.width = "50px"

但是,找不到样式字段。

Element 需要转换为更具体的 HTMLElement 类型:

val button = document.createElement("button") as HTMLElement
button.style.width = "50px"