Here is a paragraph element I'm working with:
<p class='big bold'>Some random text</p>
I attempted to style it using the following code:
p .big{
font-size:60px;
}
p .bold{
font-weight:bold;
}
Unfortunately, the styling did not work as expected. Oddly enough, removing the p selector made it work.
I had assumed that it would work because in Sass nesting behaves differently. If not, there may be limited benefits to utilizing nesting in Sass.