Files
Randell Dawson 1494a50123 fix(guide): restructure curriculum guide articles (#36501)
* fix: restructure certifications guide articles
* fix: added 3 dashes line before prob expl
* fix: added 3 dashes line before hints
* fix: added 3 dashes line before solutions
2019-07-24 13:29:27 +05:30

434 B

title
title
Store Data with Sass Variables

Store Data with Sass Variables


Solutions

Solution 1 (Click to Show/Hide)
<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>


</details>