css 2016-02-10

@andrewvida has joined the channel

@cjmurphy has joined the channel

how can I define css like this in clojurescript?:

.row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
I've tried creating a style tag, and I get an error because it complains that I've already defined display, which I have... but how else can I do this?

Are you using garden?

garden support vendor prefixes for this use case.

It also supports multiple multiple maps so you can do things like… {:display “-ms-flexbox”} {:display “flex”}

This issue is a decent example of how the automatic vendor prefixing works in Garden I believe. https://github.com/noprompt/garden/issues/64