In the process of establishing a news section on my website, I encountered an issue while using the following code:
<p id="news-container">
<h1> . . . </h1>
<strong>big</strong> . . .
</p>
Upon inspecting, it appears that the code is being parsed as:
<p id="news-container"></p>
. . . same stuff
<p></p>
There are no additional paragraph tags within the parent ones, and the page source view reveals no extra parsing with PHP. However, upon element inspection, it seems to be parsed incorrectly. Any insights on this mysterious behavior?
PS: Attempted enclosing the entire paragraph in one set of tags, but the issue persisted.
PPS: Utilizing SCSS for CSS compilation - could this potentially interfere with the paragraphs in any way?