Nesting & Scope
Lesson 7Author : 🦒
Last Updated : October, 2017
Code
main {
background-color: blue;
p {
color: red;
}
article {
background-color: yellow;
p{
color: green;
}
}
}