문제

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?

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top