Is there a SASS like C preprocessor?

SASS , on first display, seems to be a C -style preprocessor tool for the various code (like many copies and glues) that come with CSS production.

I explained that SASS is a C preprocessor , and that raised the question. The C preprocessor has very good features: defining constants, perhaps, or including header files. But there are also certain things that are “considered harmful,” in particular, using a preprocessor as a tool to execute a function, while at the same time bypassing the service functions of using the function. The preprocessor has an important place, but if you have a choice between implementing something using the preprocessor macros and implementing it as a function, most likely you should use a function, not a preprocessor.

Are there any problems with using SASS?

+3
source share
1 answer

SASS ( ) , CSS, , C.

, C , , C. , . SASS , , mixins .. , CSS.

+1

All Articles