<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Zack</title>
    <description>The latest articles on DEV Community by Zack (@krxzydev).</description>
    <link>https://dev.to/krxzydev</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F483058%2F103351e2-5508-4722-a2f3-46e80c180ecd.jpeg</url>
      <title>DEV Community: Zack</title>
      <link>https://dev.to/krxzydev</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/krxzydev"/>
    <language>en</language>
    <item>
      <title>What is sass?</title>
      <dc:creator>Zack</dc:creator>
      <pubDate>Fri, 16 Apr 2021 09:08:39 +0000</pubDate>
      <link>https://dev.to/krxzydev/what-is-sass-2lga</link>
      <guid>https://dev.to/krxzydev/what-is-sass-2lga</guid>
      <description>&lt;p&gt;Hello, there&lt;br&gt;
I'm going to explaining to you what scss is&lt;br&gt;
first, we need to know what SCSS is? Sass means Syntactically awesome stylesheet. sass is also a CSS preprocessor used in writing better css&lt;br&gt;&lt;br&gt;
You may be wondering how to write sass I'm going to show you how, and the best practices&lt;br&gt;
Sass reduces the repetition of CSS and therefore saves time.&lt;br&gt;
`/* Define standard variables and values for website */&lt;br&gt;
$bgcolor: light blue;&lt;br&gt;
$textcolor: dark blue;&lt;br&gt;
$fontsize: 18px;&lt;/p&gt;

&lt;p&gt;/* Use the variables */&lt;br&gt;
body {&lt;br&gt;
  background-color: $bgcolor;&lt;br&gt;
  color: $textcolor;&lt;br&gt;
  font-size: $fontsize;&lt;br&gt;
}`&lt;/p&gt;

&lt;h2&gt;
  
  
  Why Use Sass?
&lt;/h2&gt;

&lt;p&gt;Stylesheets are getting gigantic, more complex, and harder to maintain, or for open-source contributors to understand. This is where a CSS pre-processor can help you out.&lt;/p&gt;

&lt;p&gt;Sass lets you use features that do not exist in CSS, like variables, nested rules, mixins, imports, inheritance, built-in functions, and many more.&lt;/p&gt;

&lt;h2&gt;
  
  
  How does SASS work?
&lt;/h2&gt;

&lt;p&gt;You may be wondering this SASS sounds, looks cool but how does it work well the browser doesn't understand scss but it understands CSS this is where an interpreter is also known as a converter arrives converting your scss code into plain ol'css &lt;br&gt;
we have many interpreters one of them is a live scss compiler in the vscode extension marketplace&lt;/p&gt;

&lt;h2&gt;
  
  
  SASS file extension
&lt;/h2&gt;

&lt;p&gt;.scss or .sass but I prefer .scss &lt;/p&gt;

&lt;h2&gt;
  
  
  Sass Comments
&lt;/h2&gt;

&lt;p&gt;Sass supports standard CSS comments like &lt;code&gt;/* comment */&lt;/code&gt;, and in addition it supports inline comments &lt;code&gt;// comment&lt;/code&gt;&lt;/p&gt;

</description>
      <category>scss</category>
      <category>design</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
