I have couple of li tags under my paragraph tags and i am trying to keep the same text style for the li items as per the paragraph items. However, currently its appearing different than the parent(paragraph) element. Following is the sample HTML code:
<div>
<p>
Example paragraph
<ul>
<li>Example list item 1</li>
<li>Example list item 2</li>
<li>Example list item 3</li>
</ul>
</p>
</div>
Following is the current SASS code i am using (could be 100% wrong):
p {
font-size: 1.1rem;
>ul li*{
font-size: 1.1rem;
}
}