Sass - Style a Website
This course covers the basics of styling a website using Sass. Work your way through the videos/articles and I'll teach you everything you need to know to style a basic website!

Nesting

Lesson 7
Author : 🦒
Last Updated : October, 2017


Code

Copymain {
     background-color: blue;
     p {
          color: red;
     }
     article {
          background-color: yellow;
          p{
               color: green;
          }
     }
}