[web-devel] cassius and tag folding.

jason foutz jfoutz at gmail.com
Sun Mar 13 04:08:49 CET 2011


I'm getting started with Yesod and some html5 stuff.

The actual CSS should look something like

.flexbox {
  display: -webkit-box;
  -webkit-box-orient: horizontal;

  display: -moz-box;
  -moz-box-orient: horizontal;

  display: box;
  box-orient: horizontal;
}

but when i do this in cassius
.flexbox
    display: box
    display: -moz-box
    display: -webkit-box

    box-orient: horizontal
    -moz-box-orient: horizontal
    -webkit-box-orient: horizontal

the display: get's flattened down to the last value listed.

Is there a good way to do this?

Thanks for any advice.

Jason



More information about the web-devel mailing list