更改 hiccup 中的 div 颜色

发布于 2024-09-24 19:11:27 字数 246 浏览 7 评论 0原文

有没有办法可以在 hiccup 中设置 div 背景颜色?这是我到目前为止所尝试的,但没有结果:

[:div {:background-color "#003366"} (escape-html rest)]

在 html 中,我看到 < div background-color="#663366"> 我不认为这是正确的颜色格式。

有没有办法在打嗝时做到这一点?

Is there a way I can set a div background color in hiccup? Here is what I tried so far, with no result:

[:div {:background-color "#003366"} (escape-html rest)]

In the html, I see <div background-color="#663366"> which I do not believe is the correct format for color.

Is there a way to do this in hiccup?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-10-01 19:11:27
[:div {:style "background-color:#003366"} (escape-html rest)]

应该做到这一点。如果做的事情相当复杂,可能会考虑将样式放入其他地方的 css 文件中。

[:div {:style "background-color:#003366"} (escape-html rest)]

Should do the trick. Might want to consider putting your styles into css files elsewhere though, if doing anything reasonably complex.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文