admin管理员组文章数量:1345582
I'm using Kotlin to Javascript plugin and kotlinx.html library to build sample app:
fun main(args: Array<String>) {
window.onload = {
document.body!!.append.div {
a("#", classes = "red") {
+"Link"
}
}
}
}
And I want to paint a
link with "red" CSS class to red color.
Now I'm using unsage
+ raw
to do it:
document.head!!.append.style {
unsafe {
raw(".red { background: #f00; }")
}
}
How to create CSS class with kotlinx.html DSL? I didn't find any docs related to css DSL.
I'm using Kotlin to Javascript plugin and kotlinx.html library to build sample app:
fun main(args: Array<String>) {
window.onload = {
document.body!!.append.div {
a("#", classes = "red") {
+"Link"
}
}
}
}
And I want to paint a
link with "red" CSS class to red color.
Now I'm using unsage
+ raw
to do it:
document.head!!.append.style {
unsafe {
raw(".red { background: #f00; }")
}
}
How to create CSS class with kotlinx.html DSL? I didn't find any docs related to css DSL.
Share Improve this question asked Sep 30, 2017 at 15:46 KirillKirill 8,3519 gold badges53 silver badges107 bronze badges2 Answers
Reset to default 9You cannot use the HTML DSL for creating CSS. There are two possible ways for using css in your HTML.
1) You create CSS files independently and then use the classes
as you proposed.
2) Inline the CSS if this is feasible for your app.
h1("h1Class") {
style = "background-color:red"
+"My header1"
}
This results in:
<h1 class="h1Class" style="background-color:red">My header1</h1>
kotinx-html is a DSL for HTML only. So CSS needs to be built separately. What you need is kotlinx.css but it was quite unpopular so it was discontinued. For sure there are few munity libraries targeted to that purpose but not sure if they are still alive.
本文标签: javascriptCreate CSS class with kotlinxhtml DSLStack Overflow
版权声明:本文标题:javascript - Create CSS class with kotlinx.html DSL - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743754320a2533226.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论