How to start using Compass Sass

I'm trying to get into the Compass framework, but I'm a little confused about how I start using it.

I have Sass installed and working. Then I installed Compass, but should I use the command line to view the files yet?

Also - do I need to integrate the compass with the application to run? or can it work with static html files?

Thanks!

+4
source share
1 answer

The answer to the first question depends on whether you use the gem compass or compass.app. The application gives you a drop-down list from the menu on the poppy, and you can do everything from there. The gem requires you to tell him to view the folder from the command line. In addition, you do not need it to work in the application. Sass is compiled in advance and output as CSS to the folder created during installation.

Here is a page containing basic information for launching the compass and Sass.

+3
source

Source: https://habr.com/ru/post/1393820/


All Articles