Im working on a rails 3.1 application, and got Bourbon stylesheet framework working. Everything seems fine but I am wondering what are the main differences between Compass and Bourbon.

Why would you prefer one framework over the other?

Any issues you have experienced with any of them?

Or if there is a different framework that you use, please share that here too

More details

I am actually starting out to use a stylesheet framework for the first time and I love the concept of mixins. I want to be able to use these mixins throughout the styles I am about to start writing. I understand that compass has been pretty popular but getting it to play nicely with rails 3.1 was a tiny bit of a challenge for me so I opted for Bourbon, which also seems to be getting popular now. I just want to have a framework/library that covers a lot of what I will need during a general stylesheet building, like gradients, shadows etc. Maybe it will help to know which one has a bigger or better library of mixins, along with any compatibility issues with browsers and also versions of rails etc.

link|improve this question

77% accept rate
any experiences by anyone? – alik Oct 5 '11 at 23:54
Have you seen the question What is the value of Compass with the accepted answer that mentions bourbon? – mliebelt Oct 9 '11 at 14:36
Yes I have seen that, thanks! – alik Oct 11 '11 at 17:06
feedback

3 Answers

I had the same question and I researched it a bit more, installed both Compass and Bourbon and wound up with Bourbon, for the following reasons:

  1. Compass didn't cleanly install with Rails 3.1. It seemed a lot more invasive, needed configuration files (why?) and generally felt it had more dependencies to a specific way of doing things than just providing a CSS framework.
  2. Bourbon was super simple for Rails 3.1, and worked out of the box. The documentation was most straightforward, although I had to catch myself up on CSS3 box models first (which was easy to do--the top results on Google were right on the money). By contrast, I got lost in the Compass documentation right off the bat, and I wasn't sure what I needed and what not, there were so many pieces to it, I was afraid that it could take a long time to figure it out.
  3. Bourbon is a more recent development and seems to bank on CSS3 a lot. I would not give too much creed to one of the other answers that because Bourbon doesn't have as much activity yet it should be discarded. I have a feeling that Bourbon is the new vanguard and that it'll attract more activity as the more established Compass is losing activity. The new kid on the block isn't quite as popular at first, but that's a poor measure for long-term usefulness.
  4. If you can live without legacy browsers that don't do CSS3, then Bourbon is probably a good choice. For legacy support there are also various JS solutions available that teach the old browsers the necessary tricks.
  5. For the first time in many years as developer, Bourbon took away the fear of touching CSS. Try it with Flutie to get some basic layouts out of the box.
link|improve this answer
Bourbon looks very intriguing. I too recently found Compass to be a pain in the rear to get working on rails 3.1. And Compass documentation is very lacking - at least on their website. If you have the time, you can dig through some of the missing pieces on github. – PhillipKregg Feb 17 at 17:24
feedback

So, I took a quick look at the Bourbon documentation and it looks like it's a much simpler, much smaller version of something like Compass. It's true that the most commonly used stuff in Compass is the CSS3 mixins but there's more to Compass than just that. In particular, I'd look at the spiriting support and support for multiple elements like gradient backgrounds and box-shadows to see if that's something you'd like.

While Bourbon has the basics covered, there's some really nice edge cases that Compass takes care of. For instance, I often use the sticky-footer mixin.

link|improve this answer
feedback

Compass has a lot more traction and visibility. I've just asked on Twitter - nobody knew Bourbon.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.