Skip to main content

Posts

Showing posts with the label Sass

Sass Tutorials

Sass   ( S yntactically   A wesome   S tyle s heets)   is scripting language which produces Cascading Style Sheets   (CSS) . Sass is compatible with all CSS version and has assorted features. It is open source and developed in Ruby. What does Sass do? In simple terms by using Sass and its features we can create robust and large Style sheet with less effort and in less time. How to Install Sass? Sass requires Ruby, so if you are using Windows System then you need to install Ruby first. Here is URL of Ruby Installer . Otherwise if you use Mac or Linux System then you don’t need Ruby, it is pre-configured. Use following commands to install Sass sudo gem install sass use following command to verify  Sass is installed properly or not. sass  -v To begin with Sass, create Sass “main.scss” file and CSS “main.css” file Then run following command sass --watch main.scss:main.css It will update main.css file whenever you do changes

Subscribe for latest tutorial updates

* indicates required