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

409 B

title localeTitle
Store Data with Sass Variables 使用Sass变量存储数据

使用Sass变量存储数据

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