Hugh
Hugh

Reputation: 131

A little confusion about SASS which is something comes along with HAML

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

Answers (1)

Nick
Nick

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

Related Questions