Sass :compact

You are Here:

Example

Sass :compact is one of the sass's output style. It puts each CSS rule on its own single line.

Note: Ruby Sass is deprecated, whereas node-sass does not support :compact output styling.

Example

basic.scss
body { text-align: right; a, a:visited { padding: 0 3px; color: #222222; } a:hover { color: #B00909; } }

Execute the following command.

Command Prompt
sass --watch scss/basic.scss:css/basic.css --style compact
Basic.css
body { text-align: right; } body a, body a:visited { padding: 0 3px; color: #222222; } body a:hover { color: #B00909; }

Reminder

Hi Developers, we almost covered 99.1% of Sass Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in Sass.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author