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

441 B
Raw Blame History

title localeTitle
Store Data with Sass Variables Armazenar dados com variáveis Sass

Armazenar dados com variáveis Sass

Solução

<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>