Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS Sass Basics Getting Started with Sass Declaring and Using Variables

Swan The Human
seal-mask
.a{fill-rule:evenodd;}techdegree
Swan The Human
Full Stack JavaScript Techdegree Student 19,338 Points

If you set a variable in sass file for color can you delete the color declaration in the css file?

If you make a variable for the colors in the scss file and then delete the color declaration in the css file will anything happen? Also if you declare it in the scss file and then change it to something else in the css file which one will take priority? Same goes for any other declared variables in scss. Thanks!

1 Answer

Tashan Duncan
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Tashan Duncan
Front End Web Development Techdegree Graduate 17,799 Points

Hi Sean, Great question!

As the CSS file is the output which the browser will use to render, The changes made to this file will take priority.

However, as discussed in the earlier videos on this course it's advised not to touch the output CSS files when using SASS.

Happy coding!