i've searched around and just not found the answer to this, but hoping it's a simple answer to be honest!
I'm learning SASS, and have been attempting to convert an existing .css file. I came across a selector in there like this.
div > p {
background-color: yellow;
}
how is this achieved with SASS?
is it the same? or is there a way to nest it like you do with multiple classes like this...
.header{
.p{
color:black;
}
}
please point me in the right direction!