zk和sclass问题
如何为 zk 组件创建样式,例如网格? 我尝试这样的事情:
<style>
.mine{
}
.mine tr{
}
.mine tr td{
width: 16%;
padding: 2px 5px 2px 1px;
}
.mine tr td input[type='text']{
width: 100%;
}
...
</style>
...
<grid sclass="mine">
...
它有效..但它是通常的CSS,不应该与zk一起使用..我正在寻找更好的解决方案,请帮助
how to create styles for zk components, for examle grid?
i try something like this:
<style>
.mine{
}
.mine tr{
}
.mine tr td{
width: 16%;
padding: 2px 5px 2px 1px;
}
.mine tr td input[type='text']{
width: 100%;
}
...
</style>
...
<grid sclass="mine">
...
and it works.. but it's usual css, which shouldn't be used with zk.. i'm searching for better solution, please, help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
也许这个资源会对您有所帮助:)
ZK StyleGuide 网格。
Maybe this resource will help you out :)
ZK StyleGuide Grid.
这是更新后的文档。
您还可以参考本指南了解如何使用zclass 、sclass 和覆盖来自定义您的样式。
Here is the updated document.
You may also refer to this guide about how to use zclass, sclass, and overwriting to customize your styling.