有没有办法在hiccup中设置div背景色?以下是我到目前为止尝试的方法,但没有结果:
[:div {:background-color "#003366"} (escape-html rest)]
在html中,我看到了<div background-color="#663366">,我不认为它是正确的颜色格式。
有没有一种方法可以在hiccup中做到这一点?
发布于 2010-09-24 23:53:38
[:div {:style "background-color:#003366"} (escape-html rest)]应该能行得通。但是,如果要做一些相当复杂的事情,可以考虑将样式放到其他地方的css文件中。
https://stackoverflow.com/questions/3788768
复制相似问题