Is it possible to remove markups from a generated css file using sass?
For instance, in my scss file I have:
body{ background:$dark; }
The resulting CSS file looks like this:
body{ background: #000; }
If I delete that line of code in sass, what will happen? (not commented out, but completely removed)
Currently, when I compile the project, the generated css file still includes the markup even after deleting it in the scss file:
body{ background: #000; }
Is this behavior normal or could it be an error in the compiler? Can sass only add, edit, or overwrite existing markups in CSS and not delete them? In other words, once the markups are created in CSS, can they only be modified and you must manually remove lines of code in CSS if you want to delete them?