Here is my html file. I want to change the font size of all p element in the div. So I change the font size of the div containing all paragraphs but it doesn't work. Why?
<div class="footersection__left--address">
<p>2</p>
<p>Melano Park,</p>
<p>CA</p>
<p>USA</p>
</div>
Here is my SCSS file-
.footersection {
background-color: #FFF;
padding: 6rem;
&__left{
font-size: 1.5rem;
&--address{
font-size: 5rem;
color: aqua;
}
}
}