Reputation: 131
According to this website. It said that sass will generate css file which is css3 so,here is my concern,what if the browser is not compatible with css3 file. can I generate css2 file?
Upvotes: 0
Views: 60
Reputation: 6965
SASS is simply an alternative syntax for writing CSS which is then compiled into the standard CSS syntax. This means that your output CSS file will only contain CSS3 properties if you decide to use those properties in your SASS file.
Upvotes: 1