how to pass a .scss sheet to .css?

0

I just installed sass with ruby installer cmd, now how should I convert my code into css and apply it with link in html? ? I am new in the pre processors and I do not find the right option to achieve this, in the page of sass econtre muypoca informacion; (, some help? thanks!; D

    
asked by Patricio Martin 02.12.2017 в 16:28
source

1 answer

1

If you have installed sass from the console you just have to throw these lines in the console:

sass input.scss output.css

Now you will get the css file (output.css) and link it to your index.html file. I leave you a link

Have you heard of gulp ?? I use it to run automatic tasks at the same time I program, for example to obtain the sss code from my code. gulpjs

    
answered by 02.12.2017 / 20:52
source