freeCodeCamp/guide/arabic/certifications/front-end-libraries/sass/store-data-with-sass-variables/index.md

20 lines
447 B
Markdown
Raw Normal View History

---
title: Store Data with Sass Variables
localeTitle: تخزين البيانات مع متغيرات ساس
---
## تخزين البيانات مع متغيرات ساس
## حل
`<style type='text/sass'>
$text-color: red; // Declaration of the variable "text-color".
.header{
text-align: center;
}
.blog-post, h2 {
color: $text-color; // Changing the value of color with the value of "text-color".
}
</style>
`