Sass :compressed
You are Here:
Sass :compressed
Sass :compressed is one of the sass's output style. It removes as many extra characters as possible, and writes the entire stylesheet on a single line.
Tips: Sass :compressed is highly recommended output styling because reduced file size helps browsers to render the file(.css) as fast as possible to the end-user.
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 compressed
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.