Use variables in Sass to save and reuse values throughout your code:
$box-bgcolor: #FF8100;
$box-border: 4px dashed yellow;
.box {
background-color: $box-bgcolor;
border: $box-border;
}
The above snippet will yield the following CSS:
.box {
background-color: #FF8100;
border: 4px dashed yellow;
}
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up