开发者

Change a div color in hiccup

开发者 https://www.devze.com 2023-01-18 00:00 出处:网络
Is there a way I can set a div background color in hiccup? Here is w开发者_开发技巧hat I tried so far, with no result:

Is there a way I can set a div background color in hiccup? Here is w开发者_开发技巧hat 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?


[: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.

0

精彩评论

暂无评论...
验证码 换一张
取 消