Reputation: 857
I am new to sass/scss and want to know how I can use sass file in my HTML project?
Do I have to first compile it into CSS with command line or anything else that compiles scss/sass runtime into css file at a time when webpage loads into browser?
So any help?
Upvotes: 0
Views: 3559
Reputation: 176
There are many options to create a Project working with SASS, but the most common is using Compass, I see you're new to it, I strongly recommend you read a Tutorial about Compass, after understanding this you should look others options to use the same SASS like working with gulp
, gulp-sass
, node-sass
, browser-sync
, and many other options to use the same Tool.
Upvotes: 1